From 867b9600bbc769f6efb56970b68f25dbb061f2de Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Thu, 29 Sep 2005 23:28:48 +0000 Subject: [PATCH] (Fmessage, Fmessage_box, Fmessage_or_box): Rename argument name `string' to `format-string'. (Fformat): Doc fix. --- src/editfns.c | 10 +++++----- 1 file 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 any existing message; this lets the minibuffer contents show. See also `current-message'. -usage: (message STRING &rest ARGS) */) +usage: (message FORMAT-STRING &rest ARGS) */) (nargs, args) int nargs; Lisp_Object *args; @@ -3154,7 +3154,7 @@ to be formatted under control of the string. See `format' for details. If the first argument is nil or the empty string, clear any existing message; let the minibuffer contents show. -usage: (message-box STRING &rest ARGS) */) +usage: (message-box FORMAT-STRING &rest ARGS) */) (nargs, args) int nargs; Lisp_Object *args; @@ -3216,7 +3216,7 @@ to be formatted under control of the string. See `format' for details. If the first argument is nil or the empty string, clear any existing message; let the minibuffer contents show. -usage: (message-or-box STRING &rest ARGS) */) +usage: (message-or-box FORMAT-STRING &rest ARGS) */) (nargs, args) int nargs; Lisp_Object *args; @@ -3281,8 +3281,8 @@ usage: (propertize STRING &rest PROPERTIES) */) : SBYTES (STRING)) DEFUN ("format", Fformat, Sformat, 1, MANY, 0, - doc: /* Format a string out of a control-string and arguments. -The first argument is a control string. + doc: /* Format a string out of a format-string and arguments. +The first argument is a format control string. The other arguments are substituted into it to make the result, a string. It may contain %-sequences meaning to substitute the next argument. %s means print a string argument. Actually, prints any object, with `princ'. -- 2.11.4.GIT