emacs-devel
[Top][All Lists]
Advanced

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

Calling message with a single arg (was: [Emacs-diffs] emacs-26 5f39260:


From: Stefan Monnier
Subject: Calling message with a single arg (was: [Emacs-diffs] emacs-26 5f39260: * lisp/emacs-lisp/map-ynp.el (map-y-or-n-p): Pass format to message)
Date: Tue, 27 Nov 2018 13:15:14 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

> -      (message (or msg "")))
> +      (if msg
> +          (message "%s" msg)
> +        (message "")))

I wish we'd just change `message` so that (message STR) is treated as
(message "%s" STR).  While it might theoretically introduce some
breakage at places that double % signs before calling `message` (tho
those places are better served by (message "%s" STR) so there should be
precious few sufferers), I suspect that it will fix more places that
naively call (message STR) without realizing that STR might contain %
chars that are treated as formatting codes.


        Stefan



reply via email to

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