Mercurial > emacs
changeset 13150:3778c95adca9
(Fmake_char_table): Initialize parent to nil.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Sun, 08 Oct 1995 02:56:45 +0000 |
parents | b1dcc3e87ffb |
children | 5297bf53ac38 |
files | src/alloc.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Sat Oct 07 22:07:01 1995 +0000 +++ b/src/alloc.c Sun Oct 08 02:56:45 1995 +0000 @@ -771,6 +771,7 @@ /* 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; }