diff options
| author | Richard M. Stallman | 1995-07-18 23:52:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-07-18 23:52:22 +0000 |
| commit | 98fc5c3c8ea6b351a9514a925b7e62499df7c440 (patch) | |
| tree | 566ea4d47394052b278a64ad068cb064405aeac3 /src | |
| parent | 9dd2b34edf2aefd90dddb511e5a72450a6b88572 (diff) | |
| download | emacs-98fc5c3c8ea6b351a9514a925b7e62499df7c440.tar.gz emacs-98fc5c3c8ea6b351a9514a925b7e62499df7c440.zip | |
(Fmessage): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/editfns.c b/src/editfns.c index 0519bc806a1..6a9e2d80013 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1633,12 +1633,9 @@ static int message_length; | |||
| 1633 | 1633 | ||
| 1634 | DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, | 1634 | DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, |
| 1635 | "Print a one-line message at the bottom of the screen.\n\ | 1635 | "Print a one-line message at the bottom of the screen.\n\ |
| 1636 | The first argument is a control string.\n\ | 1636 | The first argument is a format control string, and the rest are data\n\ |
| 1637 | It may contain %s or %d or %c to print successive following arguments.\n\ | 1637 | to be formatted under control of the string. See `format' for details.\n\ |
| 1638 | %s means print an argument as a string, %d means print as number in decimal,\n\ | 1638 | \n\ |
| 1639 | %c means print a number as a single character.\n\ | ||
| 1640 | The argument used by %s must be a string or a symbol;\n\ | ||
| 1641 | the argument used by %d or %c must be a number.\n\ | ||
| 1642 | If the first argument is nil, clear any existing message; let the\n\ | 1639 | If the first argument is nil, clear any existing message; let the\n\ |
| 1643 | minibuffer contents show.") | 1640 | minibuffer contents show.") |
| 1644 | (nargs, args) | 1641 | (nargs, args) |