From: Andreas Schwab Date: Fri, 24 Dec 2010 09:25:18 +0000 (+0100) Subject: Fix indentation X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~278^2~66 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=36de6a045f3c3de316e2703aecee2861ede70cb4;p=emacs.git Fix indentation --- diff --git a/src/print.c b/src/print.c index 07faa46dfa6..3f89b407e7c 100644 --- a/src/print.c +++ b/src/print.c @@ -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; + } } }