diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-02-17 16:15:51 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-02-17 16:15:51 +0200 |
commit | 8aad8d75aa94d0d07f6abb0f0e04d7634d0d1d4a (patch) | |
tree | 3340e204a463a2491ca43df815144d40e6f2b635 /lisp/emacs-lisp | |
parent | d6e4f2437202f13bec85d68c003700d06aa343e6 (diff) | |
download | emacs-8aad8d75aa94d0d07f6abb0f0e04d7634d0d1d4a.tar.gz emacs-8aad8d75aa94d0d07f6abb0f0e04d7634d0d1d4a.tar.bz2 emacs-8aad8d75aa94d0d07f6abb0f0e04d7634d0d1d4a.zip |
; 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'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index a6b9b3f57ea..2d9cad6d98c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -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") |