diff options
| author | Katsumi Yamaoka | 2015-02-23 02:40:12 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2015-02-23 02:40:12 +0000 |
| commit | 3f006e1d47c25a8282fd41fb0df01fd80f486b9e (patch) | |
| tree | e6ce11a37ec0676391d3194b6c4caca48c785b5b | |
| parent | f6bb2ccb9b4b3c50049512d2d0664b44fc7bcc70 (diff) | |
| download | emacs-3f006e1d47c25a8282fd41fb0df01fd80f486b9e.tar.gz emacs-3f006e1d47c25a8282fd41fb0df01fd80f486b9e.zip | |
lisp/gnus/gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 07d1d471b9f..5f8b092c62a 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-02-23 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error. | ||
| 4 | |||
| 1 | 2015-02-18 Eric Abrahamsen <eric@ericabrahamsen.net> | 5 | 2015-02-18 Eric Abrahamsen <eric@ericabrahamsen.net> |
| 2 | 6 | ||
| 3 | * nnimap.el (nnimap-get-groups): Correctly read unquoted group names | 7 | * nnimap.el (nnimap-get-groups): Correctly read unquoted group names |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 85030959f79..83a2f941e9c 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -6101,7 +6101,7 @@ If nil, don't show those extra buttons." | |||
| 6101 | (gnus-article-insert-newline) | 6101 | (gnus-article-insert-newline) |
| 6102 | (if (prog1 | 6102 | (if (prog1 |
| 6103 | (= (skip-chars-backward "\n") -1) | 6103 | (= (skip-chars-backward "\n") -1) |
| 6104 | (forward-char 1)) | 6104 | (unless (eobp) (forward-char 1))) |
| 6105 | (gnus-article-insert-newline) | 6105 | (gnus-article-insert-newline) |
| 6106 | (put-text-property (point) (point-max) 'gnus-undeletable t)) | 6106 | (put-text-property (point) (point-max) 'gnus-undeletable t)) |
| 6107 | (goto-char (point-max))) | 6107 | (goto-char (point-max))) |