From: Eli Zaretskii Date: Fri, 7 Jul 2006 15:49:31 +0000 (+0000) Subject: (Fexecute_extended_command): Mention the argument PREFIXARG in the doc string. X-Git-Tag: emacs-pretest-22.0.90~1655 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfb4bff5ef1f7fc6ffe553ff895698a84f55e517;p=emacs.git (Fexecute_extended_command): Mention the argument PREFIXARG in the doc string. --- diff --git a/src/ChangeLog b/src/ChangeLog index cf3336154e1..e1c64612ca1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2006-07-07 Eli Zaretskii + + * keyboard.c (Fexecute_extended_command): Mention the argument + PREFIXARG in the doc string. + 2006-07-07 Kim F. Storm * fringe.c (Fdefine_fringe_bitmap): Doc fix. diff --git a/src/keyboard.c b/src/keyboard.c index 30b06ef38fc..07388428451 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -9768,7 +9768,13 @@ a special event, so ignore the prefix argument and don't clear it. */) DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, 1, 1, "P", - doc: /* Read function name, then read its arguments and call it. */) + doc: /* Read function name, then read its arguments and call it. + +To pass a numeric argument to the command you are invoking with, specify +the numeric argument to this command. + +Noninteractively, the argument PREFIXARG is the prefix argument to +give to the command you invoke, if it asks for an argument. */) (prefixarg) Lisp_Object prefixarg; {