aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2023-02-13 11:56:02 +0100
committerAndrea Corallo2023-02-13 12:49:05 +0100
commitabfd00e5c02ec0aed8bbac1eca0d0db1874f020a (patch)
treecedc96a6cca3858fb197b657d8c6faf8bca7b92e
parent1795839babcf8572a79aaee3c76ca5b357937a59 (diff)
downloademacs-abfd00e5c02ec0aed8bbac1eca0d0db1874f020a.tar.gz
emacs-abfd00e5c02ec0aed8bbac1eca0d0db1874f020a.zip
* lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions): Improve doc
-rw-r--r--lisp/emacs-lisp/comp.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index eeee66b3d1b..5077ca0aa1f 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -105,7 +105,12 @@ during bootstrap."
105 ;; correctly (see comment in `advice--add-function'). DO NOT 105 ;; correctly (see comment in `advice--add-function'). DO NOT
106 ;; REMOVE. 106 ;; REMOVE.
107 macroexpand rename-buffer) 107 macroexpand rename-buffer)
108 "Primitive functions to exclude from trampoline optimization." 108 "Primitive functions to exclude from trampoline optimization.
109
110Primitive functions included in this list will not be called
111directly by the native code being compiled, this makes
112tranpolines for those primitives not necessary in case of
113function redefinition/advise."
109 :type '(repeat symbol) 114 :type '(repeat symbol)
110 :version "28.1") 115 :version "28.1")
111 116