diff options
author | Kim F. Storm <storm@cua.dk> | 2007-02-24 00:07:19 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2007-02-24 00:07:19 +0000 |
commit | bb4c0f16cd632ec078eb8d47de597f2868da758f (patch) | |
tree | 006800979d8dbf853ef3b3ab21243cf9014c3b84 /lisp/pgg-pgp.el | |
parent | e026eb896c4109a93015bdc6b3bd8f3fc5ecddd5 (diff) | |
download | emacs-bb4c0f16cd632ec078eb8d47de597f2868da758f.tar.gz |
2007-02-24 Chris Moore <dooglus@gmail.com>
(pgg-*-encrypt-region):
Check pgg-encrypt-for-me if no other recipients.
Diffstat (limited to 'lisp/pgg-pgp.el')
-rw-r--r-- | lisp/pgg-pgp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/pgg-pgp.el b/lisp/pgg-pgp.el index 1e1bd6d0fd1..9bc494a5ef7 100644 --- a/lisp/pgg-pgp.el +++ b/lisp/pgg-pgp.el @@ -143,7 +143,7 @@ Bourne shell or its equivalent \(not tcsh) is needed for \"2>\"." (args (concat "+encrypttoself=off +verbose=1 +batchmode +language=us -fate " - (if recipients + (if (or recipients pgg-encrypt-for-me) (mapconcat 'shell-quote-argument (append recipients (if pgg-encrypt-for-me |