From: Karl Heuer Date: Tue, 9 Jan 1996 02:55:53 +0000 (+0000) Subject: (Fset_char_table_parent): Fix previous change. X-Git-Tag: emacs-19.34~1763 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55cc974de6aba71c40dbbcd4a5eeda1569aa5832;p=emacs.git (Fset_char_table_parent): Fix previous change. --- diff --git a/src/fns.c b/src/fns.c index 1001b8f3822..e8d9814b64a 100644 --- 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"); }