* pgg-gpg.el (pgg-scheme-encrypt-region): Don't quote recipient;
authorhayashi <hayashi>
Tue, 2 May 2000 03:07:13 +0000 (03:07 +0000)
committerhayashi <hayashi>
Tue, 2 May 2000 03:07:13 +0000 (03:07 +0000)
concatenate all arguments destructively.

ChangeLog
pgg-gpg.el

index a2894f8..872044e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-02   Daiki Ueno  <ueno@unixuser.org>
+
+       * pgg-gpg.el (pgg-scheme-encrypt-region): Don't quote recipient;
+       concatenate all arguments destructively.
+
 2000-04-17  Yoshiki Hayashi  <yoshiki@xemacs.org>
 
        * EMY 1.13.5 is released.
index 154263c..3cf8b0c 100644 (file)
         (args
          `("--batch" "--armor" "--always-trust" "--encrypt"
            ,@(if recipients
-                 (apply #'append
+                 (apply #'nconc
                         (mapcar (lambda (rcpt)
-                                  (list "--remote-user"
-                                        (concat "\"" rcpt "\"")))
+                                  (list "--remote-user" rcpt))
                                 (append recipients
                                         (if pgg-encrypt-for-me
                                             (list pgg-gpg-user-id)))))))))