diff options
| author | Richard M. Stallman | 1995-10-19 00:09:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-19 00:09:46 +0000 |
| commit | 1e9b6335bb19882dc19acb3b63a32da216c128e1 (patch) | |
| tree | 66d81165fcfe0c3a093f56cdff099cda43a7ecd1 /src | |
| parent | f392937f8ed83fff9f290fe1d6c6ed1996cef604 (diff) | |
| download | emacs-1e9b6335bb19882dc19acb3b63a32da216c128e1.tar.gz emacs-1e9b6335bb19882dc19acb3b63a32da216c128e1.zip | |
(reset_buffer_local_variables): Init case_table slots the new way.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 6 |
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 | ||