From: Glenn Morris Date: Sat, 19 Sep 2009 03:18:30 +0000 (+0000) Subject: (pgg-pgp-encrypt-region): Add missing mapconcat separator. X-Git-Tag: emacs-pretest-23.1.90~1238 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=665906840afc8db0a28b0435d5c798a25462abcc;p=emacs.git (pgg-pgp-encrypt-region): Add missing mapconcat separator. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dcbe3034a53..faf571fa719 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-09-19 Glenn Morris + + * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator. + 2009-09-18 Chong Yidong * files.el (auto-mode-alist): Change default for XML files to nXML diff --git a/lisp/pgg-pgp.el b/lisp/pgg-pgp.el index 26c7fccd78d..19d9a0ba240 100644 --- a/lisp/pgg-pgp.el +++ b/lisp/pgg-pgp.el @@ -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 ;; Created: 1999/11/02 @@ -145,7 +145,7 @@ Bourne shell or its equivalent \(not tcsh) is needed for \"2>\"." (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)))