From: Erik Naggum Date: Sun, 8 Oct 1995 02:56:45 +0000 (+0000) Subject: (Fmake_char_table): Initialize parent to nil. X-Git-Tag: emacs-19.34~2710 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c96a008cc94cc6b180b65213568226f46aff9a92;p=emacs.git (Fmake_char_table): Initialize parent to nil. --- diff --git a/src/alloc.c b/src/alloc.c index a428ac2c2f1..e747afd59cb 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -771,6 +771,7 @@ See `char-table-extra-slot' and `set-char-table-extra-slot'.") /* Add 2 to the size for the defalt and parent slots. */ vector = Fmake_vector (make_number (CHAR_TABLE_STANDARD_SLOTS + XINT (n)), init); + XCHAR_TABLE (vector)->parent = Qnil; XSETCHAR_TABLE (vector, XCHAR_TABLE (vector)); return vector; }