(Fset_char_table_parent): Fix previous change.
authorKarl Heuer <kwzh@gnu.org>
Tue, 9 Jan 1996 02:55:53 +0000 (02:55 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 9 Jan 1996 02:55:53 +0000 (02:55 +0000)
src/fns.c

index 1001b8f..e8d9814 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1214,7 +1214,7 @@ PARENT must be either nil or another char-table.")
       CHECK_CHAR_TABLE (parent, 0);  
 
       for (temp = parent; !NILP (temp); temp = XCHAR_TABLE (temp)->parent)
-       if (EQ (temp, chartable))
+       if (EQ (temp, char_table))
          error ("Attempt to make a chartable be its own parent");
     }