]> git.eshelyaron.com Git - emacs.git/commitdiff
* lread.c (init_obarray): Declare Qt as special.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Dec 2014 22:49:14 +0000 (14:49 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Dec 2014 22:50:01 +0000 (14:50 -0800)
This fixes a typo in the 2012-05-15 patch that
tried to declare Qt as special.

src/ChangeLog
src/lread.c

index 596ae25c64925c3f3774aefd623a69ac8b5c0b58..aa8adabfede88fa07ad68678d7024046d12a30a7 100644 (file)
@@ -1,3 +1,9 @@
+2014-12-16  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lread.c (init_obarray): Declare Qt as special.
+       This fixes a typo in the 2012-05-15 patch that
+       tried to declare Qt as special.
+
 2014-12-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        Various fixes to use bool type and constants.
index 6f71ff5f468c2786a83bd0f5ef7ff53d2af3e177..afa47aafb863a75b3826ffe461d9cf8a8adc8895 100644 (file)
@@ -4072,14 +4072,14 @@ init_obarray (void)
   set_symbol_plist (Qunbound, Qnil);
   SET_SYMBOL_VAL (XSYMBOL (Qnil), Qnil);
   XSYMBOL (Qnil)->constant = 1;
-  XSYMBOL (Qnil)->declared_special = 1;
+  XSYMBOL (Qnil)->declared_special = true;
   set_symbol_plist (Qnil, Qnil);
   set_symbol_function (Qnil, Qnil);
 
   Qt = intern_c_string ("t");
   SET_SYMBOL_VAL (XSYMBOL (Qt), Qt);
-  XSYMBOL (Qnil)->declared_special = 1;
   XSYMBOL (Qt)->constant = 1;
+  XSYMBOL (Qt)->declared_special = true;
 
   /* Qt is correct even if CANNOT_DUMP.  loadup.el will set to nil at end.  */
   Vpurify_flag = Qt;