diff src/fns.c @ 14097:91c55574973f

(Fset_char_table_parent): Fix previous change.
author Karl Heuer <kwzh@gnu.org>
date Tue, 09 Jan 1996 02:55:53 +0000
parents 34911b128a47
children ee40177f6c68
line wrap: on
line diff
--- a/src/fns.c	Tue Jan 09 02:52:23 1996 +0000
+++ b/src/fns.c	Tue Jan 09 02:55:53 1996 +0000
@@ -1214,7 +1214,7 @@
       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");
     }