diff options
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/callint.c b/src/callint.c index c60a376b958..d8d2b278458 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -105,11 +105,13 @@ If the string begins with `^' and `shift-select-mode' is non-nil, | |||
| 105 | You may use `@', `*', and `^' together. They are processed in the | 105 | You may use `@', `*', and `^' together. They are processed in the |
| 106 | order that they appear, before reading any arguments. | 106 | order that they appear, before reading any arguments. |
| 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 one or more mode names (symbols) |
| 109 | this command is applicable for. The main effect of this is that | 109 | for which this command is applicable. This is so that `M-x TAB' |
| 110 | `M-x TAB' (by default) won't list this command if the current buffer's | 110 | will be able to exclude this command from the list of completion |
| 111 | mode doesn't match the list. That is, if either the major mode isn't | 111 | 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 | Which commands are excluded from the list of completion |
| 113 | candidates based on this information is controlled by the value | ||
| 114 | of `read-extended-command-predicate', which see. | ||
| 113 | 115 | ||
| 114 | usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */ | 116 | usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */ |
| 115 | attributes: const) | 117 | attributes: const) |