(pgg-gpg-recipient-argument): Doc fix. Renamed fro p-g-r-a.
authorSimon Josefsson <jas@extundo.com>
Sun, 7 Dec 2003 15:40:52 +0000 (15:40 +0000)
committerSimon Josefsson <jas@extundo.com>
Sun, 7 Dec 2003 15:40:52 +0000 (15:40 +0000)
(pgg-gpg-encrypt-region): Update.

lisp/ChangeLog
lisp/pgg-gpg.el

index a861544..855d539 100644 (file)
@@ -3,6 +3,8 @@
        * pgg-gpg.el (pgg-gpg-recipient-arg): Add.
        (pgg-gpg-encrypt-region): Use it.  Tiny patch from Lloyd Zusman
        <ljz@asfast.com>.
+       (pgg-gpg-recipient-argument): Doc fix.  Renamed fro p-g-r-a.
+       (pgg-gpg-encrypt-region): Update.
 
 2003-12-07  Jesper Harder  <harder@ifa.au.dk>
 
index f1ba7cb..94c1b3a 100644 (file)
@@ -43,8 +43,8 @@
   :group 'pgg-gpg
   :type '(repeat (string :tag "Argument")))
 
-(defcustom pgg-gpg-recipient-arg "--recipient"
-  "Recipient option for gpg."
+(defcustom pgg-gpg-recipient-argument "--recipient"
+  "GnuPG option to specify recipient."
   :group 'pgg-gpg
   :type '(choice (const :tag "New `--recipient' option" "--recipient")
                 (const :tag "Old `--remote-user' option" "--remote-user")))
@@ -160,7 +160,7 @@ If optional argument SIGN is non-nil, do a combined sign and encrypt."
           (if recipients
               (apply #'nconc
                      (mapcar (lambda (rcpt)
-                               (list pgg-gpg-recipient-arg rcpt))
+                               (list pgg-gpg-recipient-argument rcpt))
                              (append recipients
                                      (if pgg-encrypt-for-me
                                          (list pgg-gpg-user-id)))))))))