aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2004-10-27 11:02:06 +0000
committerRichard M. Stallman2004-10-27 11:02:06 +0000
commit281c172124aab430be80f69e1ae98d41b1205d8f (patch)
treeee17b85e3d259f55c668fcbf8d69d58b2c3ea5de /src
parenta9f2a45f70a46764b7cee17df830a39b88b693ed (diff)
downloademacs-281c172124aab430be80f69e1ae98d41b1205d8f.tar.gz
emacs-281c172124aab430be80f69e1ae98d41b1205d8f.zip
(Fmessage): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 72d333081fa..e83e53e9d24 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3049,11 +3049,14 @@ static int message_length;
3049 3049
3050DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, 3050DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3051 doc: /* Print a one-line message at the bottom of the screen. 3051 doc: /* Print a one-line message at the bottom of the screen.
3052The message also goes into the `*Messages*' buffer.
3053\(In keyboard macros, that's all it does.)
3054
3052The first argument is a format control string, and the rest are data 3055The first argument is a format control string, and the rest are data
3053to be formatted under control of the string. See `format' for details. 3056to be formatted under control of the string. See `format' for details.
3054 3057
3055If the first argument is nil, clear any existing message; let the 3058If the first argument is nil, the function clears any existing message;
3056minibuffer contents show. 3059this lets the minibuffer contents show. See also `current-message'.
3057 3060
3058usage: (message STRING &rest ARGS) */) 3061usage: (message STRING &rest ARGS) */)
3059 (nargs, args) 3062 (nargs, args)