* lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions): Improve doc

This commit is contained in:
Andrea Corallo 2023-02-13 11:56:02 +01:00
parent 1795839bab
commit abfd00e5c0

View file

@ -105,7 +105,12 @@ during bootstrap."
;; correctly (see comment in `advice--add-function'). DO NOT ;; correctly (see comment in `advice--add-function'). DO NOT
;; REMOVE. ;; REMOVE.
macroexpand rename-buffer) macroexpand rename-buffer)
"Primitive functions to exclude from trampoline optimization." "Primitive functions to exclude from trampoline optimization.
Primitive functions included in this list will not be called
directly by the native code being compiled, this makes
tranpolines for those primitives not necessary in case of
function redefinition/advise."
:type '(repeat symbol) :type '(repeat symbol)
:version "28.1") :version "28.1")