[gnus git] branch master updated: m0-5-225-gfb4b44b =1= Fix XEmacs 21.5 compilation failure. Really.
Adam Sj??gren <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via fb4b44b34a2be1a1c35d7d9b15b82f04e0a6c215 (commit)
from 884074c7668f43d54e38280d10b985d620ffa977 (commit)
- Log -----------------------------------------------------------------
commit fb4b44b34a2be1a1c35d7d9b15b82f04e0a6c215
Author: Adam Sjøgren <[email protected]>
Date: Wed Dec 26 17:35:55 2012 +0100
Fix XEmacs 21.5 compilation failure. Really.
* mml2015.el (mml2015-epg-key-image): protect call to
set-buffer-multibyte with featurep 'xemacs for XEmacs
21.5 compability.
diff --git a/lisp/mml2015.el b/lisp/mml2015.el
index e9c52b5..d39ce28 100644
--- a/lisp/mml2015.el
+++ b/lisp/mml2015.el
@@ -823,8 +823,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'."
(defun mml2015-epg-key-image (key-id)
"Return the image of a key, if any"
(with-temp-buffer
- (when (fboundp 'set-buffer-multibyte)
- (set-buffer-multibyte nil))
+ (unless (featurep 'xemacs) (set-buffer-multibyte nil))
(let* ((coding-system-for-write 'binary)
(coding-system-for-read 'binary)
(data (shell-command-to-string
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/mml2015.el | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project