aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorPaul Eggert2012-05-25 11:19:24 -0700
committerPaul Eggert2012-05-25 11:19:24 -0700
commit42b2a986d9d4b7040fb20c90ec0efeffb78e761a (patch)
treed38e7bf5307837f2f38982757f088100de18a64e /src/lread.c
parente4d81efc58695c19154d5f6733d91172b4c3e5b7 (diff)
parenta8d3cbf75d219d7a249fc0623219511179e959da (diff)
downloademacs-42b2a986d9d4b7040fb20c90ec0efeffb78e761a.tar.gz
emacs-42b2a986d9d4b7040fb20c90ec0efeffb78e761a.zip
Merge from trunk.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index a2a18921bdc..a7ceec3bb4a 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -24,7 +24,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24#include <sys/stat.h> 24#include <sys/stat.h>
25#include <sys/file.h> 25#include <sys/file.h>
26#include <errno.h> 26#include <errno.h>
27#include <limits.h> /* for CHAR_BIT */ 27#include <limits.h> /* For CHAR_BIT. */
28#include <setjmp.h> 28#include <setjmp.h>
29#include "lisp.h" 29#include "lisp.h"
30#include "intervals.h" 30#include "intervals.h"
@@ -3996,10 +3996,12 @@ init_obarray (void)
3996 /* XSYMBOL (Qnil)->function = Qunbound; */ 3996 /* XSYMBOL (Qnil)->function = Qunbound; */
3997 SET_SYMBOL_VAL (XSYMBOL (Qnil), Qnil); 3997 SET_SYMBOL_VAL (XSYMBOL (Qnil), Qnil);
3998 XSYMBOL (Qnil)->constant = 1; 3998 XSYMBOL (Qnil)->constant = 1;
3999 XSYMBOL (Qnil)->declared_special = 1;
3999 XSYMBOL (Qnil)->plist = Qnil; 4000 XSYMBOL (Qnil)->plist = Qnil;
4000 4001
4001 Qt = intern_c_string ("t"); 4002 Qt = intern_c_string ("t");
4002 SET_SYMBOL_VAL (XSYMBOL (Qt), Qt); 4003 SET_SYMBOL_VAL (XSYMBOL (Qt), Qt);
4004 XSYMBOL (Qnil)->declared_special = 1;
4003 XSYMBOL (Qt)->constant = 1; 4005 XSYMBOL (Qt)->constant = 1;
4004 4006
4005 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */ 4007 /* Qt is correct even if CANNOT_DUMP. loadup.el will set to nil at end. */