mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 05:01:02 -08:00
* print.c (print_object): Fix last change.
This commit is contained in:
parent
6cda572a0f
commit
8855dfa5d5
1 changed files with 1 additions and 1 deletions
|
|
@ -2054,7 +2054,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
|
|||
{
|
||||
Lisp_Object maybe = ((Lisp_Object *) v->pointer)[i];
|
||||
|
||||
if (valid_lisp_object_p (maybe))
|
||||
if (valid_lisp_object_p (maybe) > 0)
|
||||
{
|
||||
PRINTCHAR (' ');
|
||||
print_object (maybe, printcharfun, escapeflag);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue