diff options
| author | Joakim Verona | 2012-12-27 15:51:22 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-27 15:51:22 +0100 |
| commit | f3400afa9a17b8e00af5b5472c986ee76815b3e8 (patch) | |
| tree | 988c2055788a1103db17330a5c8fb9e2a219e357 | |
| parent | f811d1f498d5addbeadfa5e4484855898764efd2 (diff) | |
| parent | 541aff54ba8caf9c3fff1d2039cce29e44a7a7f0 (diff) | |
| download | emacs-f3400afa9a17b8e00af5b5472c986ee76815b3e8.tar.gz emacs-f3400afa9a17b8e00af5b5472c986ee76815b3e8.zip | |
auto upstream
| -rw-r--r-- | lisp/gnus/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/gnus/mml2015.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index a830088f3b6..9968c82faeb 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -5,6 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | 2012-12-27 Andreas Schwab <schwab@linux-m68k.org> | 6 | 2012-12-27 Andreas Schwab <schwab@linux-m68k.org> |
| 7 | 7 | ||
| 8 | * mml2015.el (mml2015-epg-key-image): separate attribute stream from | ||
| 9 | stderr. | ||
| 10 | |||
| 8 | * nnimap.el (nnimap-find-article-by-message-id): | 11 | * nnimap.el (nnimap-find-article-by-message-id): |
| 9 | Don't error out if group is nil. | 12 | Don't error out if group is nil. |
| 10 | 13 | ||
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index 0bc83ad4fb0..f8f0a560417 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el | |||
| @@ -827,7 +827,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'." | |||
| 827 | (let* ((coding-system-for-write 'binary) | 827 | (let* ((coding-system-for-write 'binary) |
| 828 | (coding-system-for-read 'binary) | 828 | (coding-system-for-read 'binary) |
| 829 | (data (shell-command-to-string | 829 | (data (shell-command-to-string |
| 830 | (format "%s --list-options no-show-photos --attribute-fd 2 --list-keys %s > /dev/null" | 830 | (format "%s --list-options no-show-photos --attribute-fd 3 --list-keys %s 3>&1 >/dev/null 2>&1" |
| 831 | epg-gpg-program key-id)))) | 831 | epg-gpg-program key-id)))) |
| 832 | (when (> (length data) 0) | 832 | (when (> (length data) 0) |
| 833 | (insert (substring data 16)) | 833 | (insert (substring data 16)) |