diff options
| author | Katsumi Yamaoka | 2014-04-30 09:21:09 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2014-04-30 09:21:09 +0000 |
| commit | b0e36b7048c88aa24f6955c53fbe790bb9ebc54f (patch) | |
| tree | 82158d155cb2110c5494a5a6754347d47032c22d | |
| parent | 70c1d22fe226b56e3959cfe9605dbd991abf60ee (diff) | |
| download | emacs-b0e36b7048c88aa24f6955c53fbe790bb9ebc54f.tar.gz emacs-b0e36b7048c88aa24f6955c53fbe790bb9ebc54f.zip | |
lisp/gnus/gnus-art.el (gnus-mm-display-part): Fix previous commit (again)
| -rw-r--r-- | lisp/gnus/gnus-art.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index e3605cd5fef..951ee908a54 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -5671,8 +5671,6 @@ all parts." | |||
| 5671 | nil id | 5671 | nil id |
| 5672 | (gnus-article-mime-total-parts) | 5672 | (gnus-article-mime-total-parts) |
| 5673 | (mm-handle-media-type handle)))))) | 5673 | (mm-handle-media-type handle)))))) |
| 5674 | (if (window-live-p window) | ||
| 5675 | (select-window window)) | ||
| 5676 | (goto-char point) | 5674 | (goto-char point) |
| 5677 | ;; Toggle the button appearance between `[button]...' and `[button]'. | 5675 | ;; Toggle the button appearance between `[button]...' and `[button]'. |
| 5678 | (let ((end (next-single-property-change point 'gnus-data))) | 5676 | (let ((end (next-single-property-change point 'gnus-data))) |
| @@ -5684,7 +5682,9 @@ all parts." | |||
| 5684 | (goto-char pt) | 5682 | (goto-char pt) |
| 5685 | ;; We're in the article header. | 5683 | ;; We're in the article header. |
| 5686 | (delete-char -1))) | 5684 | (delete-char -1))) |
| 5687 | (goto-char point)) | 5685 | (goto-char point) |
| 5686 | (if (window-live-p window) | ||
| 5687 | (select-window window))) | ||
| 5688 | retval)) | 5688 | retval)) |
| 5689 | 5689 | ||
| 5690 | (defun gnus-article-goto-part (n) | 5690 | (defun gnus-article-goto-part (n) |