]> git.eshelyaron.com Git - emacs.git/commitdiff
declare comp-ctxt Vcomp_ctxt
authorAndrea Corallo <andrea_corallo@yahoo.it>
Sun, 18 Aug 2019 09:07:09 +0000 (11:07 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:34:02 +0000 (11:34 +0100)
src/comp.c

index b1116aa961b9f1f0d5e017ff2fe705f104669d6a..1d53038d47707de82d76a0b2289641f868e33896 100644 (file)
@@ -2834,6 +2834,11 @@ syms_of_comp (void)
 
   DEFVAR_INT ("comp-speed", comp_speed,
              doc: /* From 0 to 3.  */);
+  DEFVAR_LISP ("comp-ctxt", Vcomp_ctxt,
+              doc: /*
+                    The compiler context. */);
+  Vcomp_ctxt = Qnil;
+
   comp_speed = DEFAULT_SPEED;
 }