aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/mml2015.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 6642a2082c7..0fa870e595f 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12013-02-25 Adam Sjøgren <asjo@koldfront.dk>
2
3 * mml2015-el (mml2015-epg-key-image): Wrap epg-gpg-program in
4 shell-quote-argument.
5
12013-02-22 David Engster <deng@randomsample.de> 62013-02-22 David Engster <deng@randomsample.de>
2 7
3 * gnus-registry.el (gnus-registry-save): Provide class name when 8 * gnus-registry.el (gnus-registry-save): Provide class name when
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el
index b20c02aa26f..39bce23e76c 100644
--- a/lisp/gnus/mml2015.el
+++ b/lisp/gnus/mml2015.el
@@ -865,7 +865,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'."
865 (coding-system-for-read 'binary) 865 (coding-system-for-read 'binary)
866 (data (shell-command-to-string 866 (data (shell-command-to-string
867 (format "%s --list-options no-show-photos --attribute-fd 3 --list-keys %s 3>&1 >/dev/null 2>&1" 867 (format "%s --list-options no-show-photos --attribute-fd 3 --list-keys %s 3>&1 >/dev/null 2>&1"
868 epg-gpg-program key-id)))) 868 (shell-quote-argument epg-gpg-program) key-id))))
869 (when (> (length data) 0) 869 (when (> (length data) 0)
870 (insert (substring data 16)) 870 (insert (substring data 16))
871 (create-image (buffer-string) nil t))))) 871 (create-image (buffer-string) nil t)))))