From 7cd401f63db705acb8ede6624c293843b41e7e20 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 18 Aug 2019 11:07:09 +0200 Subject: [PATCH] declare comp-ctxt Vcomp_ctxt --- src/comp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/comp.c b/src/comp.c index b1116aa961b..1d53038d477 100644 --- a/src/comp.c +++ b/src/comp.c @@ -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; } -- 2.39.5