]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a byte-compile warning.
authorPhilipp Stephani <phst@google.com>
Sat, 20 Jun 2020 20:12:19 +0000 (22:12 +0200)
committerPhilipp Stephani <phst@google.com>
Sat, 20 Jun 2020 20:12:19 +0000 (22:12 +0200)
* lisp/gnus/gnus-cloud.el (gnus-cloud-download-data): Don't use
'mapcar' or effect.

lisp/gnus/gnus-cloud.el

index 7ea691e7220c9ec5ec0b15e47df818ec96ffefb4..5028da5e8dfa0c75fde08c3016929549f4f1eee8 100644 (file)
@@ -479,7 +479,7 @@ Otherwise, returns the Gnus Cloud data chunks."
           (forward-line 1))))
     (if update
         (progn
-         (mapcar #'gnus-cloud-update-all chunks)
+         (mapc #'gnus-cloud-update-all chunks)
          (setq gnus-cloud-sequence highest-sequence-seen))
       chunks)))