From c96a008cc94cc6b180b65213568226f46aff9a92 Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Sun, 8 Oct 1995 02:56:45 +0000 Subject: [PATCH] (Fmake_char_table): Initialize parent to nil. --- src/alloc.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.39.2