changeset 94694:cc771c0403a4

(print_preprocess): Add sub-char-tables to the print-table, just like we do in print.c.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 06 May 2008 18:27:54 +0000
parents 9276b559433c
children f46fc59d6e9e
files src/ChangeLog src/print.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <monnier@iro.umontreal.ca>
+
+	* print.c (print_preprocess): Add sub-char-tables to the print-table,
+	just like we do in print.c.
+
 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* minibuf.c (Ftry_completion): Remove code left over from when we used
--- 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)))