]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/editfns.c (Fmessage): Improve doc string (Bug#23425#130).
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 31 May 2017 23:22:24 +0000 (16:22 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 31 May 2017 23:23:47 +0000 (16:23 -0700)
src/editfns.c

index a51670cfdf386d197cf9d2896156a37a7b8208f2..89a6724104454b37e6dff48db6b9e59e49984a46 100644 (file)
@@ -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