aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
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