1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

; * src/callint.c (Finteractive): Doc string clarification.

This commit is contained in:
Eli Zaretskii 2023-01-09 14:03:04 +02:00
parent c1401d1c6c
commit ebc5263667

View File

@ -105,13 +105,12 @@ If the string begins with `^' and `shift-select-mode' is non-nil,
You may use `@', `*', and `^' together. They are processed in the You may use `@', `*', and `^' together. They are processed in the
order that they appear, before reading any arguments. order that they appear, before reading any arguments.
If MODES is present, it should be a list of mode names (symbols) that If MODES is present, it should be one or more mode names (symbols)
this command is applicable for. The main effect of this is that for which this command is applicable. This is so that `M-x TAB'
`M-x TAB' will be able to exclude this command from the list of will be able to exclude this command from the list of completion
completion candidates if the current buffer's mode doesn't match the list. candidates if the current buffer's mode doesn't match the list.
That is, if either the major mode isn't derived from them, or (when it's Which commands are excluded from the list of completion
a minor mode) the mode isn't in effect. Which commands are excluded candidates based on this information is controlled by the value
from the list of completion candidates is controlled by the value
of `read-extended-command-predicate', which see. of `read-extended-command-predicate', which see.
usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */ usage: (interactive &optional ARG-DESCRIPTOR &rest MODES) */