aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/print.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 44e4494d79a..e25ed31f45b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * print.c (print_preprocess): Don't forget font objects.
4
12011-03-16 Juanma Barranquero <lekktu@gmail.com> 52011-03-16 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * emacs.c (USAGE3): Doc fixes. 7 * emacs.c (USAGE3): Doc fixes.
diff --git a/src/print.c b/src/print.c
index 29a4bfab790..f48ba57b574 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1209,7 +1209,7 @@ print_preprocess (Lisp_Object obj)
1209 loop: 1209 loop:
1210 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) 1210 if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
1211 || COMPILEDP (obj) || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj) 1211 || COMPILEDP (obj) || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj)
1212 || HASH_TABLE_P (obj) 1212 || HASH_TABLE_P (obj) || FONTP (obj)
1213 || (! NILP (Vprint_gensym) 1213 || (! NILP (Vprint_gensym)
1214 && SYMBOLP (obj) 1214 && SYMBOLP (obj)
1215 && !SYMBOL_INTERNED_P (obj))) 1215 && !SYMBOL_INTERNED_P (obj)))