aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/comp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/comp.c b/src/comp.c
index 9342712a389..5efe026b2b2 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5129,7 +5129,7 @@ maybe_defer_native_compilation (Lisp_Object function_name,
5129 5129
5130 /* This is so deferred compilation is able to compile comp 5130 /* This is so deferred compilation is able to compile comp
5131 dependencies breaking circularity. */ 5131 dependencies breaking circularity. */
5132 if (comp__loadable) 5132 if (comp__compilable)
5133 { 5133 {
5134 /* Startup is done, comp is usable. */ 5134 /* Startup is done, comp is usable. */
5135 CALL0I (startup--require-comp-safely); 5135 CALL0I (startup--require-comp-safely);
@@ -5600,9 +5600,9 @@ syms_of_comp (void)
5600 DEFVAR_LISP ("comp--delayed-sources", Vcomp__delayed_sources, 5600 DEFVAR_LISP ("comp--delayed-sources", Vcomp__delayed_sources,
5601 doc: /* List of sources to be native-compiled when startup is finished. 5601 doc: /* List of sources to be native-compiled when startup is finished.
5602For internal use. */); 5602For internal use. */);
5603 DEFVAR_BOOL ("comp--loadable", 5603 DEFVAR_BOOL ("comp--compilable",
5604 comp__loadable, 5604 comp__compilable,
5605 doc: /* Non-nil when comp.el can be loaded. 5605 doc: /* Non-nil when comp.el can be native compiled.
5606For internal use. */); 5606For internal use. */);
5607 /* Compiler control customizes. */ 5607 /* Compiler control customizes. */
5608 DEFVAR_BOOL ("native-comp-deferred-compilation", 5608 DEFVAR_BOOL ("native-comp-deferred-compilation",