Fix indentation

This commit is contained in:
Andreas Schwab 2010-12-24 10:25:18 +01:00
parent ade9369c17
commit 36de6a045f

View file

@ -1813,11 +1813,11 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
{
Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil);
if (INTEGERP (num))
{
strout (" . ", 3, 3, printcharfun, 0);
print_object (obj, printcharfun, escapeflag);
goto end_of_list;
}
{
strout (" . ", 3, 3, printcharfun, 0);
print_object (obj, printcharfun, escapeflag);
goto end_of_list;
}
}
}