(wl-demo): Don't use `end-of-line' with arg 0. It cannot arrive at the
authoryamaoka <yamaoka>
Mon, 19 Jun 2000 10:06:31 +0000 (10:06 +0000)
committeryamaoka <yamaoka>
Mon, 19 Jun 2000 10:06:31 +0000 (10:06 +0000)
beginning of the buffer under old Emacsen.

wl/ChangeLog
wl/wl-demo.el

index adad030..1c0dca8 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-19  Katsumi Yamaoka    <yamaoka@jpl.org>
+
+       * wl-demo.el (wl-demo): Don't use `end-of-line' with arg 0.  It
+       cannot arrive at the beginning of the buffer under old Emacsen.
+
 2000-06-19  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-address.el (wl-address-ldap-search):
index 52c8da7..aae932a 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
 ;; Keywords: mail, net news
-;; Time-stamp: <2000-06-15 20:04:29 yamaoka>
+;; Time-stamp: <2000-06-19 18:40:58 yamaoka>
 
 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
 
@@ -247,8 +247,8 @@ Optional IMAGE-TYPE overrides the variable `wl-demo-display-logo'."
       (setq rest (- wh (count-lines (point-min) (point)) 1))
       (let ((lw (current-column))
            (lh (count-lines (point-min) (point))))
-       (while (not (bobp))
-         (end-of-line 0)
+       (while (progn (beginning-of-line) (not (bobp)))
+         (backward-char)
          (setq lw (max lw (current-column))))
        (indent-rigidly (point) (point-max) (max 0 (/ (- ww lw) 2)))))
     (insert-char ?\n (max 0 (/ (- rest 4) 2)))