emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] master 9004011: Port tls.el to older Emacs


From: Stefan Monnier
Subject: Re: [Emacs-diffs] master 9004011: Port tls.el to older Emacs
Date: Tue, 01 Sep 2015 11:48:17 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

> +(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)))

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.


        Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]