From: Gerd Moellmann Date: Thu, 4 Oct 2001 08:52:10 +0000 (+0000) Subject: (Fmake_symbol): Adapt to changes of struct Lisp_Symbol. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=403394a4b31a81af669fbadc4fe5c8ef1c0e8f3e;p=emacs.git (Fmake_symbol): Adapt to changes of struct Lisp_Symbol. --- diff --git a/src/alloc.c b/src/alloc.c index b4989c4691b..00171011ccc 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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;