aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-07-18 23:52:22 +0000
committerRichard M. Stallman1995-07-18 23:52:22 +0000
commit98fc5c3c8ea6b351a9514a925b7e62499df7c440 (patch)
tree566ea4d47394052b278a64ad068cb064405aeac3 /src
parent9dd2b34edf2aefd90dddb511e5a72450a6b88572 (diff)
downloademacs-98fc5c3c8ea6b351a9514a925b7e62499df7c440.tar.gz
emacs-98fc5c3c8ea6b351a9514a925b7e62499df7c440.zip
(Fmessage): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c9
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
1634DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, 1634DEFUN ("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\
1636The first argument is a control string.\n\ 1636The first argument is a format control string, and the rest are data\n\
1637It may contain %s or %d or %c to print successive following arguments.\n\ 1637to 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\
1640The argument used by %s must be a string or a symbol;\n\
1641the argument used by %d or %c must be a number.\n\
1642If the first argument is nil, clear any existing message; let the\n\ 1639If the first argument is nil, clear any existing message; let the\n\
1643minibuffer contents show.") 1640minibuffer contents show.")
1644 (nargs, args) 1641 (nargs, args)