From: Erik Naggum Date: Tue, 17 Sep 1996 15:36:26 +0000 (+0000) Subject: (Fmake_symbol): Initialize `obarray' field. X-Git-Tag: emacs-20.1~3721 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47d5b31e264bcd70291199f06a0db4030e52712b;p=emacs.git (Fmake_symbol): Initialize `obarray' field. --- diff --git a/src/alloc.c b/src/alloc.c index a526739d0e7..2f0cc0e812e 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -904,6 +904,7 @@ 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;