diff options
| author | Richard M. Stallman | 1994-04-23 16:32:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-23 16:32:44 +0000 |
| commit | e9edf33c1c72592e6664166e5d801dbf4253aa78 (patch) | |
| tree | 524e6cb2fd76c2494ae873448ef3d18bb2112fc3 /src/buffer.c | |
| parent | 95338744d6d217c3b6db321fa0333a619fdb1d06 (diff) | |
| download | emacs-e9edf33c1c72592e6664166e5d801dbf4253aa78.tar.gz emacs-e9edf33c1c72592e6664166e5d801dbf4253aa78.zip | |
(reset_buffer_local_variables): Use Vascii_eqv_table
and Vascii_canon_table.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index e7353d6c5bc..94e475b8f75 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -339,8 +339,8 @@ reset_buffer_local_variables (b) | |||
| 339 | b->minor_modes = Qnil; | 339 | b->minor_modes = Qnil; |
| 340 | b->downcase_table = Vascii_downcase_table; | 340 | b->downcase_table = Vascii_downcase_table; |
| 341 | b->upcase_table = Vascii_upcase_table; | 341 | b->upcase_table = Vascii_upcase_table; |
| 342 | b->case_canon_table = Vascii_downcase_table; | 342 | b->case_canon_table = Vascii_canon_table; |
| 343 | b->case_eqv_table = Vascii_upcase_table; | 343 | b->case_eqv_table = Vascii_eqv_table; |
| 344 | #if 0 | 344 | #if 0 |
| 345 | b->sort_table = XSTRING (Vascii_sort_table); | 345 | b->sort_table = XSTRING (Vascii_sort_table); |
| 346 | b->folding_sort_table = XSTRING (Vascii_folding_sort_table); | 346 | b->folding_sort_table = XSTRING (Vascii_folding_sort_table); |