]> git.eshelyaron.com Git - emacs.git/commitdiff
Complete over the MIME types in gnus-summary-save-parts
authorEric Abrahamsen <eric@ericabrahamsen.net>
Sun, 19 Jul 2020 14:15:33 +0000 (16:15 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 19 Jul 2020 14:15:33 +0000 (16:15 +0200)
* lisp/gnus/gnus-sum.el (gnus-summary-save-parts): Allow
completing over the parts in the first article in the list of the
process-marked articles (bug#39543).

lisp/gnus/gnus-sum.el

index c5036c32d574f8b89bb148813c2ad05b96ca81ee..d731893ecec8f6da2e8f3b782294705a6d12db97 100644 (file)
@@ -12509,10 +12509,15 @@ save those articles instead."
   "Save parts matching TYPE to DIR.
 If REVERSE, save parts that do not match TYPE."
   (interactive
-   (list (read-string "Save parts of type: "
-                     (or (car gnus-summary-save-parts-type-history)
-                         gnus-summary-save-parts-default-mime)
-                     'gnus-summary-save-parts-type-history)
+   (list (completing-read "Save parts of type: "
+                         (progn
+                           (gnus-summary-select-article nil t)
+                           (gnus-eval-in-buffer-window gnus-article-buffer
+                             (delete-dups
+                              (mapcar (lambda (h)
+                                        (mm-handle-media-type (cdr h)))
+                                      gnus-article-mime-handle-alist))))
+                         nil nil nil 'gnus-summary-save-parts-type-history)
         (setq gnus-summary-save-parts-last-directory
               (read-directory-name "Save to directory: "
                                     gnus-summary-save-parts-last-directory