diff options
| author | Katsumi Yamaoka | 2014-04-30 04:21:08 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2014-04-30 04:21:08 +0000 |
| commit | 70c1d22fe226b56e3959cfe9605dbd991abf60ee (patch) | |
| tree | 741cc19a66c5ca516137980f1874fa1c161e5e9b | |
| parent | 853095568a0d692ee43ab4dc06537dbb46901d57 (diff) | |
| download | emacs-70c1d22fe226b56e3959cfe9605dbd991abf60ee.tar.gz emacs-70c1d22fe226b56e3959cfe9605dbd991abf60ee.zip | |
lisp/gnus/gnus-art.el (gnus-mm-display-part): Fix previous commit
| -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 ef50a0064ae..e3605cd5fef 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -5679,7 +5679,11 @@ all parts." | |||
| 5679 | (delete-region (previous-single-property-change end 'gnus-data) end)) | 5679 | (delete-region (previous-single-property-change end 'gnus-data) end)) |
| 5680 | (gnus-insert-mime-button | 5680 | (gnus-insert-mime-button |
| 5681 | handle id (list (mm-handle-displayed-p handle))) | 5681 | handle id (list (mm-handle-displayed-p handle))) |
| 5682 | (delete-char -1) | 5682 | (let ((pt (point))) |
| 5683 | (if (search-backward "\n\n" nil t) | ||
| 5684 | (goto-char pt) | ||
| 5685 | ;; We're in the article header. | ||
| 5686 | (delete-char -1))) | ||
| 5683 | (goto-char point)) | 5687 | (goto-char point)) |
| 5684 | retval)) | 5688 | retval)) |
| 5685 | 5689 | ||