diff options
| author | Stefan Monnier | 2004-12-09 00:57:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-12-09 00:57:39 +0000 |
| commit | 45893b955fd5423777dab46dbf7d8fa9197d221b (patch) | |
| tree | 74aa3a4bae4aca9a0c8170fd8741304502a91f57 | |
| parent | a9e0384fa781667050f920554d1606a4c6ef1795 (diff) | |
| download | emacs-45893b955fd5423777dab46dbf7d8fa9197d221b.tar.gz emacs-45893b955fd5423777dab46dbf7d8fa9197d221b.zip | |
(gnus-narrow-to-page): Don't hardcode point-min.
| -rw-r--r-- | lisp/gnus/ChangeLog | 20 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 2 |
2 files changed, 12 insertions, 10 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 2b83229010d..47945169a52 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,8 +1,11 @@ | |||
| 1 | 2004-12-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min. | ||
| 4 | |||
| 1 | 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org> | 5 | 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 6 | ||
| 3 | * message.el (message-forward-make-body-mml): Remove headers | 7 | * message.el (message-forward-make-body-mml): Remove headers |
| 4 | according to message-forward-ignored-headers if a message is | 8 | according to message-forward-ignored-headers if a message is decoded. |
| 5 | decoded. | ||
| 6 | 9 | ||
| 7 | 2004-12-02 Romain Francoise <romain@orebokech.com> | 10 | 2004-12-02 Romain Francoise <romain@orebokech.com> |
| 8 | 11 | ||
| @@ -60,17 +63,16 @@ | |||
| 60 | 63 | ||
| 61 | 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de> | 64 | 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de> |
| 62 | 65 | ||
| 63 | * message.el (message-forbidden-properties): Fixed typo in doc | 66 | * message.el (message-forbidden-properties): Fix typo in doc string. |
| 64 | string. | ||
| 65 | 67 | ||
| 66 | 2004-11-25 Lars Magne Ingebrigtsen <larsi@gnus.org> | 68 | 2004-11-25 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 67 | 69 | ||
| 68 | * message.el (message-strip-forbidden-properties): Bind | 70 | * message.el (message-strip-forbidden-properties): |
| 69 | buffer-read-only (etc) to nil. | 71 | Bind buffer-read-only (etc) to nil. |
| 70 | 72 | ||
| 71 | 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de> | 73 | 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de> |
| 72 | 74 | ||
| 73 | * gnus-util.el (gnus-replace-in-string): Added doc string. | 75 | * gnus-util.el (gnus-replace-in-string): Add doc string. |
| 74 | 76 | ||
| 75 | * nnmail.el (nnmail-split-header-length-limit): Increase to 2048 | 77 | * nnmail.el (nnmail-split-header-length-limit): Increase to 2048 |
| 76 | to avoid problems when splitting mails with many recipients. | 78 | to avoid problems when splitting mails with many recipients. |
| @@ -97,8 +99,8 @@ | |||
| 97 | 99 | ||
| 98 | 2004-11-14 Reiner Steib <Reiner.Steib@gmx.de> | 100 | 2004-11-14 Reiner Steib <Reiner.Steib@gmx.de> |
| 99 | 101 | ||
| 100 | * gnus-start.el (gnus-convert-old-newsrc): Assign | 102 | * gnus-start.el (gnus-convert-old-newsrc): |
| 101 | legacy-gnus-agent to 5.10.7. | 103 | Assign legacy-gnus-agent to 5.10.7. |
| 102 | 104 | ||
| 103 | 2004-11-10 Katsumi Yamaoka <yamaoka@jpl.org> | 105 | 2004-11-10 Katsumi Yamaoka <yamaoka@jpl.org> |
| 104 | 106 | ||
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index f6286c7de87..7450fee69ee 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -5066,7 +5066,7 @@ If given a numerical ARG, move forward ARG pages." | |||
| 5066 | (goto-char (point-min)) | 5066 | (goto-char (point-min)) |
| 5067 | (gnus-insert-prev-page-button))) | 5067 | (gnus-insert-prev-page-button))) |
| 5068 | (when (and (gnus-visual-p 'page-marker) | 5068 | (when (and (gnus-visual-p 'page-marker) |
| 5069 | (< (+ (point-max) 2) (buffer-size))) | 5069 | (< (point-max) (save-restriction (widen) (point-max)))) |
| 5070 | (save-excursion | 5070 | (save-excursion |
| 5071 | (goto-char (point-max)) | 5071 | (goto-char (point-max)) |
| 5072 | (gnus-insert-next-page-button)))))) | 5072 | (gnus-insert-next-page-button)))))) |