diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-04-26 23:13:41 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-04-26 23:13:41 +0200 |
commit | 40c71e574ad27deee003a0850a40171750234d59 (patch) | |
tree | 0d27fda6787e5dfcf327b0b7be912724fbda4a95 /lisp/emacs-lisp | |
parent | edf42af2cccab9d2ea2730f721fec5d41b4700f8 (diff) | |
download | emacs-40c71e574ad27deee003a0850a40171750234d59.tar.gz emacs-40c71e574ad27deee003a0850a40171750234d59.tar.bz2 emacs-40c71e574ad27deee003a0850a40171750234d59.zip |
* lisp/emacs-lisp/comp-cstr.el (comp-ctxt): Initialize it.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp-cstr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el index b87cbf7e83c..2a50ceb194f 100644 --- a/lisp/emacs-lisp/comp-cstr.el +++ b/lisp/emacs-lisp/comp-cstr.el @@ -177,7 +177,7 @@ Return them as multiple value." ;; So we can load comp-cstr.el and comp.el in non native compiled ;; builds. -(defvar comp-ctxt) +(defvar comp-ctxt nil) (defvar comp-cstr-one (comp-value-to-cstr 1) "Represent the integer immediate one.") |