diff options
| author | Karl Heuer | 1996-01-09 02:55:53 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-09 02:55:53 +0000 |
| commit | 55cc974de6aba71c40dbbcd4a5eeda1569aa5832 (patch) | |
| tree | d298d35188430d9c4f71eed933480080deca2588 | |
| parent | 53924017eb9986d223613665d66150abd8efa065 (diff) | |
| download | emacs-55cc974de6aba71c40dbbcd4a5eeda1569aa5832.tar.gz emacs-55cc974de6aba71c40dbbcd4a5eeda1569aa5832.zip | |
(Fset_char_table_parent): Fix previous change.
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1214,7 +1214,7 @@ PARENT must be either nil or another char-table.") | |||
| 1214 | CHECK_CHAR_TABLE (parent, 0); | 1214 | CHECK_CHAR_TABLE (parent, 0); |
| 1215 | 1215 | ||
| 1216 | for (temp = parent; !NILP (temp); temp = XCHAR_TABLE (temp)->parent) | 1216 | for (temp = parent; !NILP (temp); temp = XCHAR_TABLE (temp)->parent) |
| 1217 | if (EQ (temp, chartable)) | 1217 | if (EQ (temp, char_table)) |
| 1218 | error ("Attempt to make a chartable be its own parent"); | 1218 | error ("Attempt to make a chartable be its own parent"); |
| 1219 | } | 1219 | } |
| 1220 | 1220 | ||