]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions): Improve doc
authorAndrea Corallo <akrl@sdf.org>
Mon, 13 Feb 2023 10:56:02 +0000 (11:56 +0100)
committerAndrea Corallo <akrl@sdf.org>
Mon, 13 Feb 2023 11:49:05 +0000 (12:49 +0100)
lisp/emacs-lisp/comp.el

index eeee66b3d1b1e882f03d25498445ec1df06edb17..5077ca0aa1f92f3015c1f46574c4d9e1c926a136 100644 (file)
@@ -105,7 +105,12 @@ during bootstrap."
     ;; correctly (see comment in `advice--add-function'). DO NOT
     ;; REMOVE.
     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)
   :version "28.1")