diff options
author | Andrea Corallo <akrl@sdf.org> | 2023-02-13 10:15:33 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2023-02-13 10:15:33 +0100 |
commit | 3969a34fa1ba1647665c662ce0a594b92f3f9d87 (patch) | |
tree | c11774f1d7fb7335bbd36e9bc1b9b9b19d086f3a /src | |
parent | cc30422825a5acf460d026bfe912b327b70dedcf (diff) | |
download | emacs-3969a34fa1ba1647665c662ce0a594b92f3f9d87.tar.gz emacs-3969a34fa1ba1647665c662ce0a594b92f3f9d87.tar.bz2 emacs-3969a34fa1ba1647665c662ce0a594b92f3f9d87.zip |
Revert "Rename to inhibit-automatic-native-compilation"
This reverts commit f97993ee667f9be7589825f3a4fbc095d6944ec6.
Diffstat (limited to 'src')
-rw-r--r-- | src/comp.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/comp.c b/src/comp.c index 10cf7962ba1..88b871aaae8 100644 --- a/src/comp.c +++ b/src/comp.c @@ -5174,7 +5174,7 @@ maybe_defer_native_compilation (Lisp_Object function_name, return; if (!native_comp_deferred_compilation - || !NILP (Vinhibit_automatic_native_compilation) + || !NILP (Vinhibit_native_compilation) || noninteractive || !NILP (Vpurify_flag) || !COMPILEDP (definition) @@ -5678,13 +5678,12 @@ For internal use. */); doc: /* Non-nil when comp.el can be native compiled. For internal use. */); /* Compiler control customizes. */ - DEFVAR_LISP ("inhibit-automatic-native-compilation", - Vinhibit_automatic_native_compilation, + DEFVAR_LISP ("inhibit-native-compilation", Vinhibit_native_compilation, doc: /* If non-nil, inhibit automatic native compilation of loaded .elc files. After compilation, each function definition is updated to the native compiled one. */); - Vinhibit_automatic_native_compilation = Qnil; + Vinhibit_native_compilation = Qnil; DEFVAR_BOOL ("native-comp-deferred-compilation", native_comp_deferred_compilation, |