maint: use consistent cpp indentation in all .c files

* src/stty.c: Make cpp indentation reflect nesting.
* src/factor.c: Likewise.
This commit is contained in:
Jim Meyering
2009-09-13 22:05:37 +02:00
parent f6f78f093b
commit 255a6a201e
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
#include <stdio.h>
#include <sys/types.h>
#if HAVE_GMP
#include <gmp.h>
# include <gmp.h>
#endif
#include <assert.h>
+8 -8
View File
@@ -279,18 +279,18 @@ static struct mode_info const mode_info[] =
{"cr0", output, SANE_SET, CR0, CRDLY},
#endif
#ifdef TABDLY
#ifdef TAB3
# ifdef TAB3
{"tab3", output, SANE_UNSET, TAB3, TABDLY},
#endif
#ifdef TAB2
# endif
# ifdef TAB2
{"tab2", output, SANE_UNSET, TAB2, TABDLY},
#endif
#ifdef TAB1
# endif
# ifdef TAB1
{"tab1", output, SANE_UNSET, TAB1, TABDLY},
#endif
#ifdef TAB0
# endif
# ifdef TAB0
{"tab0", output, SANE_SET, TAB0, TABDLY},
#endif
# endif
#else
# ifdef OXTABS
{"tab3", output, SANE_UNSET, OXTABS, 0},