]> git.eshelyaron.com Git - emacs.git/commitdiff
(set_case_table): Set upcase_table, case_canon_table
authorRichard M. Stallman <rms@gnu.org>
Mon, 6 May 1996 04:28:32 +0000 (04:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 6 May 1996 04:28:32 +0000 (04:28 +0000)
and case_eqv_table in the buffer.

src/casetab.c

index 112910cc09c4960b78e358a3d7110181fb3755aa..f0612fe1b5465f76a789207fb7e59ce37a1eae19 100644 (file)
@@ -159,7 +159,12 @@ set_case_table (table, standard)
   if (standard)
     Vascii_downcase_table = table;
   else
-    current_buffer->downcase_table = table;
+    {
+      current_buffer->downcase_table = table;
+      current_buffer->upcase_table = up;
+      current_buffer->case_canon_table = canon;
+      current_buffer->case_eqv_table = eqv;
+    }
 
   return table;
 }