diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-07-07 15:49:31 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-07-07 15:49:31 +0000 |
commit | dfb4bff5ef1f7fc6ffe553ff895698a84f55e517 (patch) | |
tree | bc13104854cddab8eff6ae47ca552d7c4ff5c40a /src/keyboard.c | |
parent | e5a099ecae7eb3bbb1354a75423f074447d92e5f (diff) | |
download | emacs-dfb4bff5ef1f7fc6ffe553ff895698a84f55e517.tar.gz |
(Fexecute_extended_command): Mention the argument PREFIXARG in the doc string.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r-- | src/keyboard.c | 8 |
1 files changed, 7 insertions, 1 deletions
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; { |