emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Please install this for me.


From: Richard Stallman
Subject: Please install this for me.
Date: Sat, 23 Feb 2019 23:45:01 -0500

[[[ To any NSA and FBI agents reading my email: please consider    ]]]
[[[ whether defending the US Constitution against all enemies,     ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]

Would someone please install this bug fix?

2019-02-23  Richard Stallman  <address@hidden>

        * lisp/epa-mail.el (epa-mail-default-recipients): 
        Copy elements of epa-mail-aliases; don't clobber them.

diff --git a/lisp/epa-mail.el b/lisp/epa-mail.el
index 0085937..69e8d69 100644
--- a/lisp/epa-mail.el
+++ b/lisp/epa-mail.el
@@ -150,7 +150,7 @@ epa-mail-default-recipients
                   (mapcar
                    (lambda (recipient)
                      (let ((tem (assoc recipient epa-mail-aliases)))
-                       (if tem (cdr tem)
+                       (if tem (append (cdr tem) nil)
                          (list recipient))))
                    real-recipients)))
       )))

-- 
Dr Richard Stallman
President, Free Software Foundation (https://gnu.org, https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]