diff options
author | Miles Bader <miles@gnu.org> | 2006-06-17 20:57:37 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-06-17 20:57:37 +0000 |
commit | 10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217 (patch) | |
tree | 78d2db4ab91026e7d5373086d022a2bce083200b /lisp/gnus/gnus-art.el | |
parent | 2090e2a3897bd0e36fd0e8ba13d861668a0a887f (diff) | |
parent | f362b76002bfd0f43af76a7772a808c042302f07 (diff) | |
download | emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.tar.gz emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.tar.bz2 emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.zip |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 300-313)
- Update from CVS
- Update from CVS: lispref/display.texi (Forcing Redisplay): Fix typo.
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 105-106)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-74
Diffstat (limited to 'lisp/gnus/gnus-art.el')
-rw-r--r-- | lisp/gnus/gnus-art.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 4722e98ef19..39292e33a1f 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -4927,7 +4927,11 @@ N is the numerical prefix." (article-goto-body) (narrow-to-region (point-min) (point)) (gnus-article-save-original-date - (gnus-treat-article 'head))))))))) + (gnus-treat-article 'head))))))) + ;; Cope with broken MIME messages. + (goto-char (point-max)) + (unless (bolp) + (insert "\n")))) (defcustom gnus-mime-display-multipart-as-mixed nil "Display \"multipart\" parts as \"multipart/mixed\". |