]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_char_table): Initialize parent to nil.
authorErik Naggum <erik@naggum.no>
Sun, 8 Oct 1995 02:56:45 +0000 (02:56 +0000)
committerErik Naggum <erik@naggum.no>
Sun, 8 Oct 1995 02:56:45 +0000 (02:56 +0000)
src/alloc.c

index a428ac2c2f139936c57b0db07c106361597afffa..e747afd59cb993892be844c01c7b24d15c85c76f 100644 (file)
@@ -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;
 }