[gnus git] branch master updated: m0-13-56-gf581141 =1= tls.el (tls-format-message): Eval-and-compile
Katsumi Yamaoka <[email protected]> Tue, 01 Sep 2015 01:42:54 +0200
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via f581141fa52068b947cc125d5e76b0e24911ea4f (commit)
from 80adb645d1b56d7f2c28700a174052b5758ea015 (commit)
- Log -----------------------------------------------------------------
commit f581141fa52068b947cc125d5e76b0e24911ea4f
Author: Katsumi Yamaoka <[email protected]>
Date: Mon Aug 31 23:42:45 2015 +0000
tls.el (tls-format-message): Eval-and-compile
diff --git a/lisp/tls.el b/lisp/tls.el
index a068675..46891be 100644
--- a/lisp/tls.el
+++ b/lisp/tls.el
@@ -174,10 +174,11 @@ Used by `tls-certificate-information'."
:type 'string
:group 'tls)
-(if (fboundp 'format-message)
+(eval-and-compile
+ (if (fboundp 'format-message)
(defalias 'tls-format-message 'format-message)
;; for Emacs < 25, and XEmacs, don't worry about quote translation.
- (defalias 'tls-format-message 'format))
+ (defalias 'tls-format-message 'format)))
(defun tls-certificate-information (der)
"Parse X.509 certificate in DER format into an assoc list."
-----------------------------------------------------------------------
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/tls.el | 9 +++++----
1 file changed, 5 insertions(+), 4 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