diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-12 06:30:35 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-12 06:30:35 +0200 |
commit | a837c59d9eca748e3895ae09e82373531222aef6 (patch) | |
tree | 930c991fbd39e78f9c123d710326df7745573fc7 /lisp/emacs-lisp | |
parent | 86d128c6c3acca1665addc65aa43ff80572f46e8 (diff) | |
parent | 9183d1672c65da62e482c55d93b97cd15e4d0ef0 (diff) | |
download | emacs-a837c59d9eca748e3895ae09e82373531222aef6.tar.gz emacs-a837c59d9eca748e3895ae09e82373531222aef6.tar.bz2 emacs-a837c59d9eca748e3895ae09e82373531222aef6.zip |
Merge from origin/emacs-28
9183d1672c ; * etc/PROBLEMS: Give a URL for bug#50666.
1f508a8b6f etc/PROBLEMS: Describe issues with native compilation on C...
84a5d47125 ; Fix last change
0461021893 ; * lisp/emacs-lisp/comp.el (native-comp-speed): Explain t...
876317271b * lisp/find-dired.el (find-dired): Doc fix; add crossrefer...
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 73285e0f24d..c722c0b259c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -45,7 +45,9 @@ (defcustom native-comp-speed 2 "Optimization level for native compilation, a number between -1 and 3. - -1 functions are kept in bytecode form and no native compilation is performed. + -1 functions are kept in bytecode form and no native compilation is performed + (but *.eln files are still produced, and include the compiled code in + bytecode form). 0 native compilation is performed with no optimizations. 1 light optimizations. 2 max optimization level fully adherent to the language semantic. |