changeset 13240:f6e51f3f092a

(reset_buffer_local_variables): Init case_table slots the new way.
author Richard M. Stallman <rms@gnu.org>
date Thu, 19 Oct 1995 00:09:46 +0000
parents bb56f8799f36
children b1d118fb7b3e
files src/buffer.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Thu Oct 19 00:08:57 1995 +0000
+++ b/src/buffer.c	Thu Oct 19 00:09:46 1995 +0000
@@ -478,9 +478,9 @@
   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;