1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-09 07:40:39 -08:00

; Improve and update documentation of native compilation

* src/comp.c (syms_of_comp) <native-comp-enable-subr-trampolines>
<native-comp-eln-load-path>: Doc fixes.

* lisp/emacs-lisp/comp.el (native-comp-never-optimize-functions):
Doc fix.

* doc/lispref/compile.texi (Native-Compilation Variables):
Document 'native-comp-jit-compilation' and
'native-comp-enable-subr-trampolines'.
This commit is contained in:
Eli Zaretskii 2023-02-17 16:15:51 +02:00
parent d6e4f24372
commit 8aad8d75aa
3 changed files with 113 additions and 45 deletions

View file

@ -112,9 +112,8 @@ during bootstrap."
"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."
directly by the natively-compiled code, which makes trampolines for
those primitives unnecessary in case of function redefinition/advice."
:type '(repeat symbol)
:version "28.1")