diff options
| author | Paul Eggert | 2017-05-31 16:22:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-05-31 16:23:47 -0700 |
| commit | 9c748b27c066b0cfdc8ff4a4e0fd545162836d06 (patch) | |
| tree | 2e0ccc7eeb5dd684b064a6dd48abaf1e40b39590 /src/editfns.c | |
| parent | 8130d910950a2b2a6f43903c980466f08edfd53c (diff) | |
| download | emacs-9c748b27c066b0cfdc8ff4a4e0fd545162836d06.tar.gz emacs-9c748b27c066b0cfdc8ff4a4e0fd545162836d06.zip | |
* src/editfns.c (Fmessage): Improve doc string (Bug#23425#130).
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 9 |
1 files changed, 4 insertions, 5 deletions
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, | |||
| 3734 | followed by a newline. | 3734 | followed by a newline. |
| 3735 | 3735 | ||
| 3736 | The first argument is a format control string, and the rest are data | 3736 | The first argument is a format control string, and the rest are data |
| 3737 | to be formatted under control of the string. See `format-message' for | 3737 | to be formatted under control of the string. Percent sign (%), grave |
| 3738 | details. | 3738 | accent (\\=`) and apostrophe (\\=') are special in the format; see |
| 3739 | 3739 | `format-message' for details. To display STRING without special | |
| 3740 | Note: (message "%s" VALUE) displays the string VALUE without | 3740 | treatment, use (message "%s" STRING). |
| 3741 | interpreting format characters like `%', `\\=`', and `\\=''. | ||
| 3742 | 3741 | ||
| 3743 | If the first argument is nil or the empty string, the function clears | 3742 | If the first argument is nil or the empty string, the function clears |
| 3744 | any existing message; this lets the minibuffer contents show. See | 3743 | any existing message; this lets the minibuffer contents show. See |