diff options
| author | Lars Ingebrigtsen | 2019-08-17 14:17:47 -0700 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-08-17 14:17:47 -0700 |
| commit | c81c041f605afe9c9fb64d4f821a153dafd6f94d (patch) | |
| tree | 22bbf9ae8ffa4c44614b5b29a361e2b3af36477d /src | |
| parent | 643df79279d0a7264361780cc6a7ded54d921947 (diff) | |
| download | emacs-c81c041f605afe9c9fb64d4f821a153dafd6f94d.tar.gz emacs-c81c041f605afe9c9fb64d4f821a153dafd6f94d.zip | |
Doc clarification for call-interactively
* src/callint.c (Fcall_interactively): Be explicit about what we
mean by "inquire" in the doc string (bug#15653).
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c index 812287d365f..d76836f32b2 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -268,8 +268,9 @@ means unconditionally put this command in the variable `command-history'. | |||
| 268 | Otherwise, this is done only if an arg is read using the minibuffer. | 268 | Otherwise, this is done only if an arg is read using the minibuffer. |
| 269 | 269 | ||
| 270 | Optional third arg KEYS, if given, specifies the sequence of events to | 270 | Optional third arg KEYS, if given, specifies the sequence of events to |
| 271 | supply, as a vector, if the command inquires which events were used to | 271 | supply, as a vector, if FUNCTION inquires which events were used to |
| 272 | invoke it. If KEYS is omitted or nil, the return value of | 272 | invoke it (via an `interactive' spec that contains, for instance, an |
| 273 | \"e\" code letter). If KEYS is omitted or nil, the return value of | ||
| 273 | `this-command-keys-vector' is used. */) | 274 | `this-command-keys-vector' is used. */) |
| 274 | (Lisp_Object function, Lisp_Object record_flag, Lisp_Object keys) | 275 | (Lisp_Object function, Lisp_Object record_flag, Lisp_Object keys) |
| 275 | { | 276 | { |