From: Paul Eggert Date: Wed, 31 May 2017 23:22:24 +0000 (-0700) Subject: * src/editfns.c (Fmessage): Improve doc string (Bug#23425#130). X-Git-Tag: emacs-26.0.90~521^2~209 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c748b27c066b0cfdc8ff4a4e0fd545162836d06;p=emacs.git * src/editfns.c (Fmessage): Improve doc string (Bug#23425#130). --- diff --git a/src/editfns.c b/src/editfns.c index a51670cfdf3..89a67241044 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3734,11 +3734,10 @@ In batch mode, the message is printed to the standard error stream, followed by a newline. The first argument is a format control string, and the rest are data -to be formatted under control of the string. See `format-message' for -details. - -Note: (message "%s" VALUE) displays the string VALUE without -interpreting format characters like `%', `\\=`', and `\\=''. +to be formatted under control of the string. Percent sign (%), grave +accent (\\=`) and apostrophe (\\=') are special in the format; see +`format-message' for details. To display STRING without special +treatment, use (message "%s" STRING). If the first argument is nil or the empty string, the function clears any existing message; this lets the minibuffer contents show. See