# HG changeset patch # User Andreas Schwab # Date 1293182718 -3600 # Node ID fa60617e20c1c793423fa161705b87cfbba7554d # Parent df9847719afab225ec31a83911dac86fe3283235 Fix indentation diff -r df9847719afa -r fa60617e20c1 src/print.c --- a/src/print.c Thu Dec 23 22:24:24 2010 +0000 +++ b/src/print.c Fri Dec 24 10:25:18 2010 +0100 @@ -1813,11 +1813,11 @@ { 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; + } } }