diff options
| author | Eli Zaretskii | 2023-01-08 12:43:56 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-01-08 12:43:56 +0200 |
| commit | 5cb01ac5d78e52d276857b45cd1f17e5d53b7899 (patch) | |
| tree | 7f9fc4590ea09da2bab18cfa2a70728846092f83 | |
| parent | 53e64cfb852e8c953e90448970f7d48b3872bc1e (diff) | |
| download | emacs-5cb01ac5d78e52d276857b45cd1f17e5d53b7899.tar.gz emacs-5cb01ac5d78e52d276857b45cd1f17e5d53b7899.zip | |
; * src/callint.c (Finteractive): Fix the doc string (bug#60645).
| -rw-r--r-- | src/callint.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/callint.c b/src/callint.c index c60a376b958..04bd64535c9 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -107,9 +107,12 @@ You may use `@', `*', and `^' together. They are processed in the | |||
| 107 | 107 | ||
| 108 | If MODES is present, it should be a list of mode names (symbols) that | 108 | If MODES is present, it should be a list of mode names (symbols) that |
| 109 | this command is applicable for. The main effect of this is that | 109 | this command is applicable for. The main effect of this is that |
| 110 | `M-x TAB' (by default) won't list this command if the current buffer's | 110 | `M-x TAB' will be able to exclude this command from the list of |
| 111 | mode doesn't match the list. That is, if either the major mode isn't | 111 | completion candidates if the current buffer's mode doesn't match the list. |
| 112 | derived from them, or (when it's a minor mode) the mode isn't in effect. | 112 | That is, if either the major mode isn't derived from them, or (when it's |
| 113 | a minor mode) the mode isn't in effect. Which commands are excluded | ||
| 114 | from the list of completion candidates is controlled by the value | ||
| 115 | of `read-extended-command-predicate', which see. | ||
| 113 | 116 | ||
| 114 | usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */ | 117 | usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */ |
| 115 | attributes: const) | 118 | attributes: const) |