]> git.eshelyaron.com Git - emacs.git/commitdiff
(set_case_table): Make canon table point to eqv table.
authorRichard M. Stallman <rms@gnu.org>
Fri, 6 Sep 2002 16:46:08 +0000 (16:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 6 Sep 2002 16:46:08 +0000 (16:46 +0000)
src/ChangeLog
src/casetab.c

index d68ddfb35afa9a979570a02a751519673eacb605..410e537a52400c13e671e6ed04a3213c57f7264e 100644 (file)
@@ -1,3 +1,7 @@
+2002-09-06  Richard M. Stallman  <rms@gnu.org>
+
+       * casetab.c (set_case_table): Make canon table point to eqv table.
+
 2002-09-06  Juanma Barranquero  <lektu@terra.es>
 
        * coding.c (syms_of_coding): Fix spacing.
index de504e2e3352074baf8eefe0ea7cd4441b4dfa13..6056af54682d61d1ff56eb5be8580e4d680941b8 100644 (file)
@@ -158,6 +158,9 @@ set_case_table (table, standard)
       XCHAR_TABLE (table)->extras[2] = eqv;
     }
 
+  /* This is so set_image_of_range_1 in regex.c can find the EQV table.  */
+  XCHAR_TABLE (canon)->extras[2] = eqv;
+
   if (standard)
     Vascii_downcase_table = table;
   else