changeset 105104:e6d22839e0c0

(pgg-pgp-encrypt-region): Add missing mapconcat separator.
author Glenn Morris <rgm@gnu.org>
date Sat, 19 Sep 2009 03:18:30 +0000
parents 02f10c9339eb
children cd7303840497
files lisp/ChangeLog lisp/pgg-pgp.el
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Sep 18 23:54:04 2009 +0000
+++ b/lisp/ChangeLog	Sat Sep 19 03:18:30 2009 +0000
@@ -1,3 +1,7 @@
+2009-09-19  Glenn Morris  <rgm@gnu.org>
+
+	* pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
+
 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
 
 	* files.el (auto-mode-alist): Change default for XML files to nXML
--- a/lisp/pgg-pgp.el	Fri Sep 18 23:54:04 2009 +0000
+++ b/lisp/pgg-pgp.el	Sat Sep 19 03:18:30 2009 +0000
@@ -1,7 +1,7 @@
 ;;; pgg-pgp.el --- PGP 2.* and 6.* support for PGG.
 
-;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
-;;   2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;;   2009  Free Software Foundation, Inc.
 
 ;; Author: Daiki Ueno <ueno@unixuser.org>
 ;; Created: 1999/11/02
@@ -145,7 +145,7 @@
                (mapconcat 'shell-quote-argument
                           (append recipients
                                   (if pgg-encrypt-for-me
-                                      (list pgg-pgp-user-id)))))
+                                      (list pgg-pgp-user-id))) " "))
            (if sign (concat " -s -u " (shell-quote-argument pgg-pgp-user-id))))))
     (pgg-pgp-process-region start end nil pgg-pgp-program args)
     (pgg-process-when-success nil)))