aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorMiles Bader2005-09-30 11:43:45 +0000
committerMiles Bader2005-09-30 11:43:45 +0000
commitc4e8cde8c6cea5ab85abbac10626bd5c1fe5a6af (patch)
tree5ea3dab08718e0458f0033773ec6921a37212d2b /src/editfns.c
parent7b9dc9afcc06c9d5c3e3f75f3bb420d57cd1de12 (diff)
parent070860c37ab005c2c94276e2230c4bfe67f50c14 (diff)
downloademacs-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.c10
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
3256any existing message; this lets the minibuffer contents show. See 3256any existing message; this lets the minibuffer contents show. See
3257also `current-message'. 3257also `current-message'.
3258 3258
3259usage: (message STRING &rest ARGS) */) 3259usage: (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.
3286If the first argument is nil or the empty string, clear any existing 3286If the first argument is nil or the empty string, clear any existing
3287message; let the minibuffer contents show. 3287message; let the minibuffer contents show.
3288 3288
3289usage: (message-box STRING &rest ARGS) */) 3289usage: (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.
3348If the first argument is nil or the empty string, clear any existing 3348If the first argument is nil or the empty string, clear any existing
3349message; let the minibuffer contents show. 3349message; let the minibuffer contents show.
3350 3350
3351usage: (message-or-box STRING &rest ARGS) */) 3351usage: (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
3415DEFUN ("format", Fformat, Sformat, 1, MANY, 0, 3415DEFUN ("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.
3417The first argument is a control string. 3417The first argument is a format control string.
3418The other arguments are substituted into it to make the result, a string. 3418The other arguments are substituted into it to make the result, a string.
3419It may contain %-sequences meaning to substitute the next argument. 3419It 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'.