diff options
| author | Andrea Corallo | 2023-02-13 10:19:31 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2023-02-13 10:19:31 +0100 |
| commit | c0681cd3477b6fce5e257ac720a32e09357ea157 (patch) | |
| tree | d2acb3fe54e0bcf3e8d900a0e746ca80533e8184 /src/comp.c | |
| parent | 3969a34fa1ba1647665c662ce0a594b92f3f9d87 (diff) | |
| download | emacs-c0681cd3477b6fce5e257ac720a32e09357ea157.tar.gz emacs-c0681cd3477b6fce5e257ac720a32e09357ea157.zip | |
Revert "Add new variable 'inhibit-native-compilation'"
This reverts commit 5fec9182dbeffa88cef6651d8c798ef9665d6681.
Diffstat (limited to 'src/comp.c')
| -rw-r--r-- | src/comp.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/comp.c b/src/comp.c index 88b871aaae8..7d67995fa87 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -5174,7 +5174,6 @@ maybe_defer_native_compilation (Lisp_Object function_name, | |||
| 5174 | return; | 5174 | return; |
| 5175 | 5175 | ||
| 5176 | if (!native_comp_deferred_compilation | 5176 | if (!native_comp_deferred_compilation |
| 5177 | || !NILP (Vinhibit_native_compilation) | ||
| 5178 | || noninteractive | 5177 | || noninteractive |
| 5179 | || !NILP (Vpurify_flag) | 5178 | || !NILP (Vpurify_flag) |
| 5180 | || !COMPILEDP (definition) | 5179 | || !COMPILEDP (definition) |
| @@ -5678,13 +5677,6 @@ For internal use. */); | |||
| 5678 | doc: /* Non-nil when comp.el can be native compiled. | 5677 | doc: /* Non-nil when comp.el can be native compiled. |
| 5679 | For internal use. */); | 5678 | For internal use. */); |
| 5680 | /* Compiler control customizes. */ | 5679 | /* Compiler control customizes. */ |
| 5681 | DEFVAR_LISP ("inhibit-native-compilation", Vinhibit_native_compilation, | ||
| 5682 | doc: /* If non-nil, inhibit automatic native compilation of loaded .elc files. | ||
| 5683 | |||
| 5684 | After compilation, each function definition is updated to the native | ||
| 5685 | compiled one. */); | ||
| 5686 | Vinhibit_native_compilation = Qnil; | ||
| 5687 | |||
| 5688 | DEFVAR_BOOL ("native-comp-deferred-compilation", | 5680 | DEFVAR_BOOL ("native-comp-deferred-compilation", |
| 5689 | native_comp_deferred_compilation, | 5681 | native_comp_deferred_compilation, |
| 5690 | doc: /* If non-nil compile loaded .elc files asynchronously. | 5682 | doc: /* If non-nil compile loaded .elc files asynchronously. |