[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] master 9004011: Port tls.el to older Emacs
From: |
Katsumi Yamaoka |
Subject: |
Re: [Emacs-diffs] master 9004011: Port tls.el to older Emacs |
Date: |
Wed, 02 Sep 2015 08:00:38 +0900 |
User-agent: |
Gnus/5.130014 (真 Gnus v0.14) Emacs/25.0.50 (i686-pc-cygwin) |
On Tue, 01 Sep 2015 11:48:17 -0400, Stefan Monnier wrote:
>> +(eval-and-compile
[...]
> This should be
> (defalias 'tls-format-message
> (if (fboundp 'format-message) 'format-message
> ;; for Emacs < 25, and XEmacs, don't worry about quote translation.
> 'format))
> at which point it shouldn't require `eval-and-compile' any more.
Done. Thank you for a good suggestion. I've done so on
gnus-format-message too, though not yet used in gnus-util.el.