From 55cc974de6aba71c40dbbcd4a5eeda1569aa5832 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 9 Jan 1996 02:55:53 +0000 Subject: [PATCH] (Fset_char_table_parent): Fix previous change. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index 1001b8f382..e8d9814b64 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"); } -- 2.20.1