diff options
| author | Richard M. Stallman | 2004-10-27 11:02:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-10-27 11:02:06 +0000 |
| commit | 281c172124aab430be80f69e1ae98d41b1205d8f (patch) | |
| tree | ee17b85e3d259f55c668fcbf8d69d58b2c3ea5de /src | |
| parent | a9f2a45f70a46764b7cee17df830a39b88b693ed (diff) | |
| download | emacs-281c172124aab430be80f69e1ae98d41b1205d8f.tar.gz emacs-281c172124aab430be80f69e1ae98d41b1205d8f.zip | |
(Fmessage): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 7 |
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 | ||
| 3050 | DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, | 3050 | DEFUN ("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. |
| 3052 | The message also goes into the `*Messages*' buffer. | ||
| 3053 | \(In keyboard macros, that's all it does.) | ||
| 3054 | |||
| 3052 | The first argument is a format control string, and the rest are data | 3055 | The first argument is a format control string, and the rest are data |
| 3053 | to be formatted under control of the string. See `format' for details. | 3056 | to be formatted under control of the string. See `format' for details. |
| 3054 | 3057 | ||
| 3055 | If the first argument is nil, clear any existing message; let the | 3058 | If the first argument is nil, the function clears any existing message; |
| 3056 | minibuffer contents show. | 3059 | this lets the minibuffer contents show. See also `current-message'. |
| 3057 | 3060 | ||
| 3058 | usage: (message STRING &rest ARGS) */) | 3061 | usage: (message STRING &rest ARGS) */) |
| 3059 | (nargs, args) | 3062 | (nargs, args) |