From e9edf33c1c72592e6664166e5d801dbf4253aa78 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 23 Apr 1994 16:32:44 +0000 Subject: [PATCH] (reset_buffer_local_variables): Use Vascii_eqv_table and Vascii_canon_table. --- src/buffer.c | 4 ++-- 1 file 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) 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); -- 2.39.5