diff options
| author | Andreas Schwab | 2010-12-24 10:25:18 +0100 |
|---|---|---|
| committer | Andreas Schwab | 2010-12-24 10:25:18 +0100 |
| commit | 36de6a045f3c3de316e2703aecee2861ede70cb4 (patch) | |
| tree | 052c8e9b97aaaf69a3722015a4e1ef831cad17bb /src | |
| parent | ade9369c1751ae0994914db5c446d0d0ba5261e8 (diff) | |
| download | emacs-36de6a045f3c3de316e2703aecee2861ede70cb4.tar.gz emacs-36de6a045f3c3de316e2703aecee2861ede70cb4.zip | |
Fix indentation
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 10 |
1 files changed, 5 insertions, 5 deletions
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 | |||
| 1813 | { | 1813 | { |
| 1814 | Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil); | 1814 | Lisp_Object num = Fgethash (obj, Vprint_number_table, Qnil); |
| 1815 | if (INTEGERP (num)) | 1815 | if (INTEGERP (num)) |
| 1816 | { | 1816 | { |
| 1817 | strout (" . ", 3, 3, printcharfun, 0); | 1817 | strout (" . ", 3, 3, printcharfun, 0); |
| 1818 | print_object (obj, printcharfun, escapeflag); | 1818 | print_object (obj, printcharfun, escapeflag); |
| 1819 | goto end_of_list; | 1819 | goto end_of_list; |
| 1820 | } | 1820 | } |
| 1821 | } | 1821 | } |
| 1822 | } | 1822 | } |
| 1823 | 1823 | ||