projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
982e8f7
)
Don't clobber epa-mail-aliases
author
Richard Stallman
<rms@gnu.org>
Sun, 24 Feb 2019 16:45:41 +0000
(08:45 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 24 Feb 2019 16:46:54 +0000
(08:46 -0800)
* lisp/epa-mail.el (epa-mail-default-recipients):
Copy elements of epa-mail-aliases; don't clobber them.
lisp/epa-mail.el
patch
|
blob
|
history
diff --git
a/lisp/epa-mail.el
b/lisp/epa-mail.el
index ce71ed8f9e45396a81a390a5dbd422c058d5f484..1bb8d9bfde16ed7bde9a79e9ed41709ae9f8a08c 100644
(file)
--- a/
lisp/epa-mail.el
+++ b/
lisp/epa-mail.el
@@
-150,7
+150,7
@@
If no one is selected, default secret key is used. "
(mapcar
(lambda (recipient)
(let ((tem (assoc recipient epa-mail-aliases)))
- (if tem (c
dr tem
)
+ (if tem (c
opy-sequence (cdr tem)
)
(list recipient))))
real-recipients)))
)))