diff options
| author | Miles Bader | 2005-09-30 11:43:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-09-30 11:43:45 +0000 |
| commit | c4e8cde8c6cea5ab85abbac10626bd5c1fe5a6af (patch) | |
| tree | 5ea3dab08718e0458f0033773ec6921a37212d2b /src/editfns.c | |
| parent | 7b9dc9afcc06c9d5c3e3f75f3bb420d57cd1de12 (diff) | |
| parent | 070860c37ab005c2c94276e2230c4bfe67f50c14 (diff) | |
| download | emacs-c4e8cde8c6cea5ab85abbac10626bd5c1fe5a6af.tar.gz emacs-c4e8cde8c6cea5ab85abbac10626bd5c1fe5a6af.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-86
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 562-568)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 125-128)
- Merge from emacs--cvs-trunk--0
- Update from CVS
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 98828352375..2fa6ffcca5c 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3256,7 +3256,7 @@ If the first argument is nil or the empty string, the function clears | |||
| 3256 | any existing message; this lets the minibuffer contents show. See | 3256 | any existing message; this lets the minibuffer contents show. See |
| 3257 | also `current-message'. | 3257 | also `current-message'. |
| 3258 | 3258 | ||
| 3259 | usage: (message STRING &rest ARGS) */) | 3259 | usage: (message FORMAT-STRING &rest ARGS) */) |
| 3260 | (nargs, args) | 3260 | (nargs, args) |
| 3261 | int nargs; | 3261 | int nargs; |
| 3262 | Lisp_Object *args; | 3262 | Lisp_Object *args; |
| @@ -3286,7 +3286,7 @@ to be formatted under control of the string. See `format' for details. | |||
| 3286 | If the first argument is nil or the empty string, clear any existing | 3286 | If the first argument is nil or the empty string, clear any existing |
| 3287 | message; let the minibuffer contents show. | 3287 | message; let the minibuffer contents show. |
| 3288 | 3288 | ||
| 3289 | usage: (message-box STRING &rest ARGS) */) | 3289 | usage: (message-box FORMAT-STRING &rest ARGS) */) |
| 3290 | (nargs, args) | 3290 | (nargs, args) |
| 3291 | int nargs; | 3291 | int nargs; |
| 3292 | Lisp_Object *args; | 3292 | Lisp_Object *args; |
| @@ -3348,7 +3348,7 @@ to be formatted under control of the string. See `format' for details. | |||
| 3348 | If the first argument is nil or the empty string, clear any existing | 3348 | If the first argument is nil or the empty string, clear any existing |
| 3349 | message; let the minibuffer contents show. | 3349 | message; let the minibuffer contents show. |
| 3350 | 3350 | ||
| 3351 | usage: (message-or-box STRING &rest ARGS) */) | 3351 | usage: (message-or-box FORMAT-STRING &rest ARGS) */) |
| 3352 | (nargs, args) | 3352 | (nargs, args) |
| 3353 | int nargs; | 3353 | int nargs; |
| 3354 | Lisp_Object *args; | 3354 | Lisp_Object *args; |
| @@ -3413,8 +3413,8 @@ usage: (propertize STRING &rest PROPERTIES) */) | |||
| 3413 | : SBYTES (STRING)) | 3413 | : SBYTES (STRING)) |
| 3414 | 3414 | ||
| 3415 | DEFUN ("format", Fformat, Sformat, 1, MANY, 0, | 3415 | DEFUN ("format", Fformat, Sformat, 1, MANY, 0, |
| 3416 | doc: /* Format a string out of a control-string and arguments. | 3416 | doc: /* Format a string out of a format-string and arguments. |
| 3417 | The first argument is a control string. | 3417 | The first argument is a format control string. |
| 3418 | The other arguments are substituted into it to make the result, a string. | 3418 | The other arguments are substituted into it to make the result, a string. |
| 3419 | It may contain %-sequences meaning to substitute the next argument. | 3419 | It may contain %-sequences meaning to substitute the next argument. |
| 3420 | %s means print a string argument. Actually, prints any object, with `princ'. | 3420 | %s means print a string argument. Actually, prints any object, with `princ'. |