mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-20 13:00:51 -07:00
lisp/gnus/gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error
This commit is contained in:
parent
f6bb2ccb9b
commit
3f006e1d47
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2015-02-23 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error.
|
||||
|
||||
2015-02-18 Eric Abrahamsen <eric@ericabrahamsen.net>
|
||||
|
||||
* nnimap.el (nnimap-get-groups): Correctly read unquoted group names
|
||||
|
|
|
|||
|
|
@ -6101,7 +6101,7 @@ If nil, don't show those extra buttons."
|
|||
(gnus-article-insert-newline)
|
||||
(if (prog1
|
||||
(= (skip-chars-backward "\n") -1)
|
||||
(forward-char 1))
|
||||
(unless (eobp) (forward-char 1)))
|
||||
(gnus-article-insert-newline)
|
||||
(put-text-property (point) (point-max) 'gnus-undeletable t))
|
||||
(goto-char (point-max)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue