]> git.eshelyaron.com Git - emacs.git/commit
(derived-mode-p): Take MODES as a single argument
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 16 Nov 2023 22:21:18 +0000 (17:21 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 23 Nov 2023 16:59:38 +0000 (11:59 -0500)
commite6556db4200ccf28bd9bb033be0d5ce3cd2316a9
tree41411919440c61b34f8223f7f17431c48ffd1c8f
parent9bda21ad0dddc5d84b6fca269626adeaa608b7a1
(derived-mode-p): Take MODES as a single argument

Looking at uses of `derived-mode-p` and `provide-mode-derived-p`,
I can't find a single use case where it wouldn't be preferable for
it to take a single argument instead of `&rest`: all the calls are
either passing a single argument anyway, or passing a fixed list of modes.
The use of `&rest` just makes the code less efficient and sometimes
more clunky (because of the need for `apply`).
So let's change that (while preserving backward compatibility, of course).

* doc/lispref/modes.texi (Derived Modes): Adjust accordingly.

* lisp/subr.el (provided-mode-derived-p, derived-mode-p): Take the
`modes` as a single argument.
doc/lispref/modes.texi
etc/NEWS
lisp/subr.el