lines argument, scroll down by wl-message-scroll-amount lines.
(wl-message-next-page): Ditto.
* wl-vars.el (wl-message-scroll-amount): Change default value
to preserve current behavior.
+2002-06-21 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
+
+ * wl-message.el (wl-message-prev-page): When it is called without
+ lines argument, scroll down by wl-message-scroll-amount lines.
+ (wl-message-next-page): Ditto.
+ * wl-vars.el (wl-message-scroll-amount): Change default value
+ to preserve current behavior.
+
2002-06-20 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* wl-summary.el (wl-summary-prefetch-msg): Bind
(recenter))
(if (not (bobp))
(condition-case nil
- (scroll-down lines)
+ (scroll-down (or lines wl-message-scroll-amount))
(error))
(setq top t)))
(if real-top
(static-if (boundp 'window-pixel-scroll-increment)
;; XEmacs 21.2.20 and later.
(let (window-pixel-scroll-increment)
- (scroll-up lines))
- (scroll-up lines))
+ (scroll-up (or lines wl-message-scroll-amount)))
+ (scroll-up (or lines wl-message-scroll-amount)))
(end-of-buffer
(goto-char (point-max))))
(setq bottom nil))
:group 'wl-draft
:group 'wl-pref)
-(defcustom wl-message-scroll-amount 5
+(defcustom wl-message-scroll-amount nil
"*Scroll amount by SPC key."
:type 'integer
:group 'wl-pref)