diff options
author | Andrea Corallo <akrl@sdf.org> | 2023-02-13 16:37:43 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2023-02-13 17:04:22 +0100 |
commit | 8d8464bd5a98598e7a6fe63370545c7f07574926 (patch) | |
tree | f3bbab79f1f05e187c246442e9ac8bf05f881cc5 /lisp/startup.el | |
parent | 5d0912f1445e33f1ccf23a84f0dc6d08c4ee2b60 (diff) | |
download | emacs-8d8464bd5a98598e7a6fe63370545c7f07574926.tar.gz emacs-8d8464bd5a98598e7a6fe63370545c7f07574926.tar.bz2 emacs-8d8464bd5a98598e7a6fe63370545c7f07574926.zip |
Rename native-comp-deferred-compilation into native-comp-jit-compilation
* src/comp.c (maybe_defer_native_compilation, syms_of_comp):
Rename native-comp-deferred-compilation into
native-comp-jit-compilation.
* lisp/subr.el (native-comp-deferred-compilation): Mark
native-comp-deferred-compilation as obsolete.
* lisp/startup.el (native-comp-deferred-compilation)
(normal-top-level): Rename native-comp-deferred-compilation into
native-comp-jit-compilation.
* lisp/progmodes/elisp-mode.el
(emacs-lisp-native-compile-and-load): Likewise.
* lisp/emacs-lisp/generate-lisp-file.el
(generate-lisp-file-trailer): Likewise.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index ddbb39df857..b0f019d704e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -542,7 +542,7 @@ DIRS are relative." (setq comp--compilable t)) (defvar native-comp-eln-load-path) -(defvar native-comp-deferred-compilation) +(defvar native-comp-jit-compilation) (defvar native-comp-enable-subr-trampolines) (defvar startup--original-eln-load-path nil @@ -597,7 +597,7 @@ It is the default value of the variable `top-level'." ;; in this session. This is necessary if libgccjit is not ;; available on MS-Windows, but Emacs was built with ;; native-compilation support. - (setq native-comp-deferred-compilation nil + (setq native-comp-jit-compilation nil native-comp-enable-subr-trampolines nil)) ;; Form `native-comp-eln-load-path'. |