From dec47cc387d5323b3846b190d3efd688be7334cf Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 4 Oct 2004 01:19:47 +0000 Subject: [PATCH] (print_object): Include sub char-table in cicularities detection. --- src/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) /* Detect circularities and truncate them. */ if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) - || COMPILEDP (obj) || CHAR_TABLE_P (obj) + || COMPILEDP (obj) || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) || (! NILP (Vprint_gensym) && SYMBOLP (obj) && !SYMBOL_INTERNED_P (obj)))