aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorJuri Linkov2005-09-29 23:28:48 +0000
committerJuri Linkov2005-09-29 23:28:48 +0000
commit867b9600bbc769f6efb56970b68f25dbb061f2de (patch)
treeeb469fd413231fd69c19d0fd01129f86252e3f70 /src/editfns.c
parent2a56faf14ceafade1badac39eba8e71f6fd5e0df (diff)
downloademacs-867b9600bbc769f6efb56970b68f25dbb061f2de.tar.gz
emacs-867b9600bbc769f6efb56970b68f25dbb061f2de.zip
(Fmessage, Fmessage_box, Fmessage_or_box):
Rename argument name `string' to `format-string'. (Fformat): Doc fix.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c
index ee1249acc11..56b6ac71fb4 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3124,7 +3124,7 @@ If the first argument is nil or the empty string, the function clears
3124any existing message; this lets the minibuffer contents show. See 3124any existing message; this lets the minibuffer contents show. See
3125also `current-message'. 3125also `current-message'.
3126 3126
3127usage: (message STRING &rest ARGS) */) 3127usage: (message FORMAT-STRING &rest ARGS) */)
3128 (nargs, args) 3128 (nargs, args)
3129 int nargs; 3129 int nargs;
3130 Lisp_Object *args; 3130 Lisp_Object *args;
@@ -3154,7 +3154,7 @@ to be formatted under control of the string. See `format' for details.
3154If the first argument is nil or the empty string, clear any existing 3154If the first argument is nil or the empty string, clear any existing
3155message; let the minibuffer contents show. 3155message; let the minibuffer contents show.
3156 3156
3157usage: (message-box STRING &rest ARGS) */) 3157usage: (message-box FORMAT-STRING &rest ARGS) */)
3158 (nargs, args) 3158 (nargs, args)
3159 int nargs; 3159 int nargs;
3160 Lisp_Object *args; 3160 Lisp_Object *args;
@@ -3216,7 +3216,7 @@ to be formatted under control of the string. See `format' for details.
3216If the first argument is nil or the empty string, clear any existing 3216If the first argument is nil or the empty string, clear any existing
3217message; let the minibuffer contents show. 3217message; let the minibuffer contents show.
3218 3218
3219usage: (message-or-box STRING &rest ARGS) */) 3219usage: (message-or-box FORMAT-STRING &rest ARGS) */)
3220 (nargs, args) 3220 (nargs, args)
3221 int nargs; 3221 int nargs;
3222 Lisp_Object *args; 3222 Lisp_Object *args;
@@ -3281,8 +3281,8 @@ usage: (propertize STRING &rest PROPERTIES) */)
3281 : SBYTES (STRING)) 3281 : SBYTES (STRING))
3282 3282
3283DEFUN ("format", Fformat, Sformat, 1, MANY, 0, 3283DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3284 doc: /* Format a string out of a control-string and arguments. 3284 doc: /* Format a string out of a format-string and arguments.
3285The first argument is a control string. 3285The first argument is a format control string.
3286The other arguments are substituted into it to make the result, a string. 3286The other arguments are substituted into it to make the result, a string.
3287It may contain %-sequences meaning to substitute the next argument. 3287It may contain %-sequences meaning to substitute the next argument.
3288%s means print a string argument. Actually, prints any object, with `princ'. 3288%s means print a string argument. Actually, prints any object, with `princ'.