Mercurial > emacs
changeset 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 | f3766d691555 |
children | aa682cae5c89 |
files | src/fns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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"); }