]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_symbol): Adapt to changes of struct Lisp_Symbol.
authorGerd Moellmann <gerd@gnu.org>
Thu, 4 Oct 2001 08:52:10 +0000 (08:52 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 4 Oct 2001 08:52:10 +0000 (08:52 +0000)
src/alloc.c

index b4989c4691b007c8f92dab0a19a1c0208aeeccfa..00171011cccad67e6b13d8ee157dd2eaf682a61e 100644 (file)
@@ -2541,11 +2541,13 @@ Its value and function definition are void, and its property list is nil.")
   
   p = XSYMBOL (val);
   p->name = XSTRING (name);
-  p->obarray = Qnil;
   p->plist = Qnil;
   p->value = Qunbound;
   p->function = Qunbound;
-  p->next = 0;
+  p->next = NULL;
+  p->interned = SYMBOL_UNINTERNED;
+  p->constant = 0;
+  p->indirect_variable = 0;
   consing_since_gc += sizeof (struct Lisp_Symbol);
   symbols_consed++;
   return val;