From: Andrea Corallo Date: Mon, 13 Feb 2023 10:56:02 +0000 (+0100) Subject: * lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions): Improve doc X-Git-Tag: emacs-29.0.90~432 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=abfd00e5c02;p=emacs.git * lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions): Improve doc --- 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." ;; 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")