* src/print.c (print_preprocess): Don't forget font objects.

This commit is contained in:
Stefan Monnier 2011-03-16 10:23:26 -04:00
parent 8a05b6681e
commit 35ac2a97f5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
* print.c (print_preprocess): Don't forget font objects.
2011-03-16 Juanma Barranquero <lekktu@gmail.com>
* emacs.c (USAGE3): Doc fixes.

View file

@ -1209,7 +1209,7 @@ print_preprocess (Lisp_Object obj)
loop:
if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
|| COMPILEDP (obj) || CHAR_TABLE_P (obj) || SUB_CHAR_TABLE_P (obj)
|| HASH_TABLE_P (obj)
|| HASH_TABLE_P (obj) || FONTP (obj)
|| (! NILP (Vprint_gensym)
&& SYMBOLP (obj)
&& !SYMBOL_INTERNED_P (obj)))