# HG changeset patch # User Stefan Monnier # Date 1210098474 0 # Node ID cc771c0403a4523e3778c3ee0bf2569227e57dd3 # Parent 9276b559433cb4377ff09a2189aea2673b0227f1 (print_preprocess): Add sub-char-tables to the print-table, just like we do in print.c. diff -r 9276b559433c -r cc771c0403a4 src/ChangeLog --- a/src/ChangeLog Tue May 06 16:29:23 2008 +0000 +++ b/src/ChangeLog Tue May 06 18:27:54 2008 +0000 @@ -1,3 +1,8 @@ +2008-05-06 Stefan Monnier + + * print.c (print_preprocess): Add sub-char-tables to the print-table, + just like we do in print.c. + 2008-05-05 Stefan Monnier * minibuf.c (Ftry_completion): Remove code left over from when we used diff -r 9276b559433c -r cc771c0403a4 src/print.c --- a/src/print.c Tue May 06 16:29:23 2008 +0000 +++ b/src/print.c Tue May 06 18:27:54 2008 +0000 @@ -1382,7 +1382,7 @@ loop: 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)))