diff options
| author | Juri Linkov | 2005-09-29 23:28:48 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-09-29 23:28:48 +0000 |
| commit | 867b9600bbc769f6efb56970b68f25dbb061f2de (patch) | |
| tree | eb469fd413231fd69c19d0fd01129f86252e3f70 /src/editfns.c | |
| parent | 2a56faf14ceafade1badac39eba8e71f6fd5e0df (diff) | |
| download | emacs-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.c | 10 |
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 | |||
| 3124 | any existing message; this lets the minibuffer contents show. See | 3124 | any existing message; this lets the minibuffer contents show. See |
| 3125 | also `current-message'. | 3125 | also `current-message'. |
| 3126 | 3126 | ||
| 3127 | usage: (message STRING &rest ARGS) */) | 3127 | usage: (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. | |||
| 3154 | If the first argument is nil or the empty string, clear any existing | 3154 | If the first argument is nil or the empty string, clear any existing |
| 3155 | message; let the minibuffer contents show. | 3155 | message; let the minibuffer contents show. |
| 3156 | 3156 | ||
| 3157 | usage: (message-box STRING &rest ARGS) */) | 3157 | usage: (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. | |||
| 3216 | If the first argument is nil or the empty string, clear any existing | 3216 | If the first argument is nil or the empty string, clear any existing |
| 3217 | message; let the minibuffer contents show. | 3217 | message; let the minibuffer contents show. |
| 3218 | 3218 | ||
| 3219 | usage: (message-or-box STRING &rest ARGS) */) | 3219 | usage: (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 | ||
| 3283 | DEFUN ("format", Fformat, Sformat, 1, MANY, 0, | 3283 | DEFUN ("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. |
| 3285 | The first argument is a control string. | 3285 | The first argument is a format control string. |
| 3286 | The other arguments are substituted into it to make the result, a string. | 3286 | The other arguments are substituted into it to make the result, a string. |
| 3287 | It may contain %-sequences meaning to substitute the next argument. | 3287 | It 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'. |