mime-view.el (mime-preview-scroll-down-entity) was modified.
authoryamaoka <yamaoka>
Thu, 28 May 1998 22:20:15 +0000 (22:20 +0000)
committeryamaoka <yamaoka>
Thu, 28 May 1998 22:20:15 +0000 (22:20 +0000)
ChangeLog
mime-view.el

index b5b0ea9..dc5b3c1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-05-29  Katsumi Yamaoka   <yamaoka@jpl.org>
+
+       * mime-view.el (mime-preview-scroll-down-entity): Use (not (bobp))
+       instead of (> (point) 1).
+
 1998-05-25  Katsumi Yamaoka   <yamaoka@jpl.org>
 
        * mime-play.el (mime-preview-play-current-entity): Don't widen.
index fcfc391..eab86e7 100644 (file)
@@ -1328,7 +1328,7 @@ If reached to (point-min), it calls function registered in variable
     (let (point)
       (save-excursion
        (catch 'tag
-         (while (> (point) 1)
+         (while (not (bobp))
            (if (setq point
                      (previous-single-property-change (point)
                                                       'mime-view-entity))