[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/vm 3535485061 08/20: vm-imap|pop.el (vm-expunge-imap|pop-m
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/vm 3535485061 08/20: vm-imap|pop.el (vm-expunge-imap|pop-messages): Fix misuse of `nreverse` |
Date: |
Mon, 22 Jul 2024 13:02:24 -0400 (EDT) |
branch: elpa/vm
commit 35354850611192e68ddf29b12fb5e9b9e7d4a4b5
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
vm-imap|pop.el (vm-expunge-imap|pop-messages): Fix misuse of `nreverse`
---
lisp/vm-imap.el | 2 +-
lisp/vm-pop.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/vm-imap.el b/lisp/vm-imap.el
index 0747439ad0..38730bdca3 100644
--- a/lisp/vm-imap.el
+++ b/lisp/vm-imap.el
@@ -940,7 +940,7 @@ on all the relevant IMAP servers and then immediately
expunges."
(if (zerop delete-count) "No" delete-count)
(if (= delete-count 1) "" "s")))
(insert "VM had problems expunging messages from:\n")
- (nreverse trouble)
+ (setq trouble (nreverse trouble))
(setq mp trouble)
(while mp
(insert " " (car mp) "\n")
diff --git a/lisp/vm-pop.el b/lisp/vm-pop.el
index 20758e130e..cb0cf3b404 100644
--- a/lisp/vm-pop.el
+++ b/lisp/vm-pop.el
@@ -410,7 +410,7 @@ relevant POP servers to remove the messages."
(if (zerop delete-count) "No" delete-count)
(if (= delete-count 1) "" "s")))
(insert "VM had problems expunging messages from:\n")
- (nreverse trouble)
+ (setq trouble (nreverse trouble))
(setq mp trouble)
(while mp
(insert " " (car mp) "\n")
- [nongnu] elpa/vm afd21a83dd 05/20: Reorder declarations to avoid compiler warnings, (continued)
- [nongnu] elpa/vm afd21a83dd 05/20: Reorder declarations to avoid compiler warnings, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 9f9eb4ab23 06/20: Improve markup in docstrings according to compiler warnings, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 508752603a 09/20: * lisp/vm-macro.el (vm-interactive-p): Move to top-level. Use everywhere, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 9df9bb01f5 12/20: Fix some `defcustom` types, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm fbe2f525c5 14/20: Move `defvar`s out of `eval-when-compile`, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm bc3907cabe 15/20: Assume Emacs-22 hook names, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 4fd49c3888 10/20: vm-mime.el: Use `base64-(en|de)code-region` unconditionally, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm b31b4ec294 16/20: Silence misc warnings, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm ee7f6b8dd2 07/20: Tweak `require`s to fix compiler warnings, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm cdfd325bf9 11/20: Prefer `ash` over `lsh`, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 3535485061 08/20: vm-imap|pop.el (vm-expunge-imap|pop-messages): Fix misuse of `nreverse`,
ELPA Syncer <=
- [nongnu] elpa/vm 7b5009c0e5 13/20: Fix "interactive only" warnings, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 5a45e15c4b 17/20: Activate `lexical-binding`, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 4fcb1dc734 18/20: restore commit history for vm-fix-many-warnings branch, ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm ae8ec0e7f5 19/20: Merge branch 'main' into 'main', ELPA Syncer, 2024/07/22
- [nongnu] elpa/vm 89cfe9aa55 20/20: Merge branch 'activate-lexical-binding' into 'main', ELPA Syncer, 2024/07/22