]> code.delx.au - gnu-emacs/commitdiff
lisp/gnus/mml2015.el (mml2015-epg-key-image): Wrap epg-gpg-program in shell-quote...
authorAdam Sjøgren <asjo@koldfront.dk>
Mon, 25 Feb 2013 22:47:31 +0000 (22:47 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 25 Feb 2013 22:47:31 +0000 (22:47 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mml2015.el

index 6642a2082c7e46923fe5437cf5f0559b230a7bba..0fa870e595f5a38dc1f7af07fa9f0ca0c0dc5156 100644 (file)
@@ -1,3 +1,8 @@
+2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>
+
+       * mml2015-el (mml2015-epg-key-image): Wrap epg-gpg-program in
+       shell-quote-argument.
+
 2013-02-22  David Engster  <deng@randomsample.de>
 
        * gnus-registry.el (gnus-registry-save): Provide class name when
index b20c02aa26f89494e40ba21424b60a90574fd174..39bce23e76ca3f9ac3267ee4554966510209cdaf 100644 (file)
@@ -865,7 +865,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'."
            (coding-system-for-read 'binary)
            (data (shell-command-to-string
                   (format "%s --list-options no-show-photos --attribute-fd 3 --list-keys %s 3>&1 >/dev/null 2>&1"
-                          epg-gpg-program key-id))))
+                          (shell-quote-argument epg-gpg-program) key-id))))
       (when (> (length data) 0)
         (insert (substring data 16))
         (create-image (buffer-string) nil t)))))