diff options
| author | Boruch Baum <boruch_baum@gmx.com> | 2020-10-01 20:26:13 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-01 20:26:13 +0200 |
| commit | cd8880514f0962cd3d9aa5e797402a68182bb191 (patch) | |
| tree | 86636e8ff7987099e5fa3beaa5fc52020d68ff80 | |
| parent | d00eb41fc22ab3643275f8f6d895f928ed535815 (diff) | |
| download | emacs-cd8880514f0962cd3d9aa5e797402a68182bb191.tar.gz | |
command-execute doc string clarification
* lisp/simple.el (command-execute): Doc string clarification
(bug#43749).
| -rw-r--r-- | lisp/simple.el | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 05a74d90d62..b6d4e0603ee 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2067,13 +2067,18 @@ invoking, give a prefix argument to `execute-extended-command'." ;; BEWARE: Called directly from the C code. "Execute CMD as an editor command. CMD must be a symbol that satisfies the `commandp' predicate. -Optional second arg RECORD-FLAG non-nil -means unconditionally put this command in the variable `command-history'. -Otherwise, that is done only if an arg is read using the minibuffer. -The argument KEYS specifies the value to use instead of (this-command-keys) -when reading the arguments; if it is nil, (this-command-keys) is used. -The argument SPECIAL, if non-nil, means that this command is executing -a special event, so ignore the prefix argument and don't clear it." + +Optional second arg RECORD-FLAG non-nil means unconditionally put +this command in the variable `command-history'. Otherwise, that +is done only if an arg is read using the minibuffer. + +The argument KEYS specifies the value to use instead of the +return value of the `this-command-keys' function when reading the +arguments; if it is nil, `this-command-keys' is used. + +The argument SPECIAL, if non-nil, means that this command is +executing a special event, so ignore the prefix argument and +don't clear it." (setq debug-on-next-call nil) (let ((prefixarg (unless special ;; FIXME: This should probably be done around |
