]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't try to jump to non-existent part (bug#28013)
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 8 Aug 2017 23:40:27 +0000 (23:40 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 8 Aug 2017 23:40:27 +0000 (23:40 +0000)
* lisp/gnus/gnus-art.el (gnus-article-edit-part): Don't try to jump to
the next part if there is the only one part in the article (bug#28013).

lisp/gnus/gnus-art.el

index 3f384c65ece545fd2d80ac08dbf59432f0d81d7e..ce0ff2ee8c08ee495205b39a2d4ebc996b95c93b 100644 (file)
@@ -5058,11 +5058,14 @@ and `gnus-mime-delete-part', and not provided at run-time normally."
       (gnus-article-edit-done))
     (gnus-configure-windows 'article)
     (sit-for 0)
-    (when (and current-id (integerp gnus-auto-select-part))
-      (gnus-article-jump-to-part
-       (min (max (+ current-id gnus-auto-select-part) 1)
-           (with-current-buffer gnus-article-buffer
-             (length gnus-article-mime-handle-alist)))))))
+    (let ((handles (with-current-buffer gnus-article-buffer
+                    gnus-article-mime-handle-alist)))
+      ;; `handles' will be nil if there is the only one part
+      ;; in the article and is deleted.
+      (when (and handles current-id (integerp gnus-auto-select-part))
+       (gnus-article-jump-to-part
+        (min (max (+ current-id gnus-auto-select-part) 1)
+             (length handles)))))))
 
 (defun gnus-mime-replace-part (file)
   "Replace MIME part under point with an external body."