aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-19 00:09:46 +0000
committerRichard M. Stallman1995-10-19 00:09:46 +0000
commit1e9b6335bb19882dc19acb3b63a32da216c128e1 (patch)
tree66d81165fcfe0c3a093f56cdff099cda43a7ecd1 /src/buffer.c
parentf392937f8ed83fff9f290fe1d6c6ed1996cef604 (diff)
downloademacs-1e9b6335bb19882dc19acb3b63a32da216c128e1.tar.gz
emacs-1e9b6335bb19882dc19acb3b63a32da216c128e1.zip
(reset_buffer_local_variables): Init case_table slots the new way.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
1 files 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)
478 b->mode_name = QSFundamental; 478 b->mode_name = QSFundamental;
479 b->minor_modes = Qnil; 479 b->minor_modes = Qnil;
480 b->downcase_table = Vascii_downcase_table; 480 b->downcase_table = Vascii_downcase_table;
481 b->upcase_table = Vascii_upcase_table; 481 b->upcase_table = XCHAR_TABLE (Vascii_downcase_table)->extras[0];
482 b->case_canon_table = Vascii_canon_table; 482 b->case_canon_table = XCHAR_TABLE (Vascii_downcase_table)->extras[1];
483 b->case_eqv_table = Vascii_eqv_table; 483 b->case_eqv_table = XCHAR_TABLE (Vascii_downcase_table)->extras[2];
484 b->buffer_file_type = Qnil; 484 b->buffer_file_type = Qnil;
485 b->invisibility_spec = Qt; 485 b->invisibility_spec = Qt;
486 486