diff options
| author | Eli Zaretskii | 2006-07-07 15:49:31 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-07-07 15:49:31 +0000 |
| commit | dfb4bff5ef1f7fc6ffe553ff895698a84f55e517 (patch) | |
| tree | bc13104854cddab8eff6ae47ca552d7c4ff5c40a /src | |
| parent | e5a099ecae7eb3bbb1354a75423f074447d92e5f (diff) | |
| download | emacs-dfb4bff5ef1f7fc6ffe553ff895698a84f55e517.tar.gz emacs-dfb4bff5ef1f7fc6ffe553ff895698a84f55e517.zip | |
(Fexecute_extended_command): Mention the argument PREFIXARG in the doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cf3336154e1..e1c64612ca1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-07-07 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c (Fexecute_extended_command): Mention the argument | ||
| 4 | PREFIXARG in the doc string. | ||
| 5 | |||
| 1 | 2006-07-07 Kim F. Storm <storm@cua.dk> | 6 | 2006-07-07 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * fringe.c (Fdefine_fringe_bitmap): Doc fix. | 8 | * 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. */) | |||
| 9768 | 9768 | ||
| 9769 | DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, | 9769 | DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, |
| 9770 | 1, 1, "P", | 9770 | 1, 1, "P", |
| 9771 | doc: /* Read function name, then read its arguments and call it. */) | 9771 | doc: /* Read function name, then read its arguments and call it. |
| 9772 | |||
| 9773 | To pass a numeric argument to the command you are invoking with, specify | ||
| 9774 | the numeric argument to this command. | ||
| 9775 | |||
| 9776 | Noninteractively, the argument PREFIXARG is the prefix argument to | ||
| 9777 | give to the command you invoke, if it asks for an argument. */) | ||
| 9772 | (prefixarg) | 9778 | (prefixarg) |
| 9773 | Lisp_Object prefixarg; | 9779 | Lisp_Object prefixarg; |
| 9774 | { | 9780 | { |