From 1e9b6335bb19882dc19acb3b63a32da216c128e1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Oct 1995 00:09:46 +0000 Subject: [PATCH] (reset_buffer_local_variables): Init case_table slots the new way. --- src/buffer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/buffer.c b/src/buffer.c index 30a95df9c4b..3d73dd722c2 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -478,9 +478,9 @@ reset_buffer_local_variables (b) b->mode_name = QSFundamental; b->minor_modes = Qnil; b->downcase_table = Vascii_downcase_table; - b->upcase_table = Vascii_upcase_table; - b->case_canon_table = Vascii_canon_table; - b->case_eqv_table = Vascii_eqv_table; + b->upcase_table = XCHAR_TABLE (Vascii_downcase_table)->extras[0]; + b->case_canon_table = XCHAR_TABLE (Vascii_downcase_table)->extras[1]; + b->case_eqv_table = XCHAR_TABLE (Vascii_downcase_table)->extras[2]; b->buffer_file_type = Qnil; b->invisibility_spec = Qt; -- 2.39.2