]> git.eshelyaron.com Git - emacs.git/commitdiff
(reset_buffer_local_variables): Use Vascii_eqv_table
authorRichard M. Stallman <rms@gnu.org>
Sat, 23 Apr 1994 16:32:44 +0000 (16:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 23 Apr 1994 16:32:44 +0000 (16:32 +0000)
and Vascii_canon_table.

src/buffer.c

index e7353d6c5bc979db8f1dd52eb2a49e61c82b9975..94e475b8f75485184572a767e3758d076be36132 100644 (file)
@@ -339,8 +339,8 @@ reset_buffer_local_variables (b)
   b->minor_modes = Qnil;
   b->downcase_table = Vascii_downcase_table;
   b->upcase_table = Vascii_upcase_table;
-  b->case_canon_table = Vascii_downcase_table;
-  b->case_eqv_table = Vascii_upcase_table;
+  b->case_canon_table = Vascii_canon_table;
+  b->case_eqv_table = Vascii_eqv_table;
 #if 0
   b->sort_table = XSTRING (Vascii_sort_table);
   b->folding_sort_table = XSTRING (Vascii_folding_sort_table);