diff options
| author | Kenichi Handa | 2004-10-04 01:19:47 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-10-04 01:19:47 +0000 |
| commit | dec47cc387d5323b3846b190d3efd688be7334cf (patch) | |
| tree | 6c0676f142ee36d385ad5d5499b42cb8c4ebc9bf | |
| parent | 41482d3650c49e1dc1333e49a7fcc226fe6fa29c (diff) | |
| download | emacs-dec47cc387d5323b3846b190d3efd688be7334cf.tar.gz emacs-dec47cc387d5323b3846b190d3efd688be7334cf.zip | |
(print_object): Include sub char-table in cicularities
detection.
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 6576b387005..84625a89edd 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1494,7 +1494,7 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1494 | 1494 | ||
| 1495 | /* Detect circularities and truncate them. */ | 1495 | /* Detect circularities and truncate them. */ |
| 1496 | if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) | 1496 | if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) |
| 1497 | || COMPILEDP (obj) || CHAR_TABLE_P (obj) | 1497 | || COMPILEDP (obj) || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) |
| 1498 | || (! NILP (Vprint_gensym) | 1498 | || (! NILP (Vprint_gensym) |
| 1499 | && SYMBOLP (obj) | 1499 | && SYMBOLP (obj) |
| 1500 | && !SYMBOL_INTERNED_P (obj))) | 1500 | && !SYMBOL_INTERNED_P (obj))) |