]> git.eshelyaron.com Git - emacs.git/commitdiff
Make `move article' work again (bug#33653)
authorKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 5 Apr 2019 04:25:06 +0000 (04:25 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 5 Apr 2019 04:25:06 +0000 (04:25 +0000)
* lisp/gnus/gnus-sum.el (gnus-summary-move-article): Back to while loop
m dolist that blocks nov and active from saving (bug#33653).

lisp/gnus/gnus-sum.el

index f5853a243051f3e793943094121e19c3110a4972..21f0e5951ccd5ed3d9444990ae7b8f65951c217d 100644 (file)
@@ -9979,7 +9979,7 @@ ACTION can be either `move' (the default), `crosspost' or `copy'."
                 (crosspost "Crosspost" "Crossposting")))
        (copy-buf (save-excursion
                    (nnheader-set-temp-buffer " *copy article*")))
-        art-group to-method new-xref to-groups
+       art-group to-method new-xref article to-groups
        articles-to-update-marks encoded)
     (unless (assq action names)
       (error "Unknown action %s" action))
@@ -10029,7 +10029,8 @@ ACTION can be either `move' (the default), `crosspost' or `copy'."
                  (or (car select-method)
                      (gnus-group-decoded-name to-newsgroup))
                  articles)
-    (dolist (article articles)
+    (while articles
+      (setq article (pop articles))
       ;; Set any marks that may have changed in the summary buffer.
       (when gnus-preserve-marks
        (gnus-summary-push-marks-to-backend article))