summaryrefslogtreecommitdiff
path: root/src/stty.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-09-13 22:05:37 +0200
committerJim Meyering <meyering@redhat.com>2009-09-13 22:05:37 +0200
commit255a6a201eaaef016ca909332f82bd86ef7d42ca (patch)
treee4eadbfb7b6546d4bfe6f0f78d18b86ffb5e2520 /src/stty.c
parentf6f78f093b57f2abf82c2ba3d7bf65e533af6ae7 (diff)
downloadcoreutils-255a6a201eaaef016ca909332f82bd86ef7d42ca.tar.xz
maint: use consistent cpp indentation in all .c files
* src/stty.c: Make cpp indentation reflect nesting. * src/factor.c: Likewise.
Diffstat (limited to 'src/stty.c')
-rw-r--r--src/stty.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/stty.c b/src/stty.c
index b980e8482..7b25b0bf8 100644
--- a/src/stty.c
+++ b/src/stty.c
@@ -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},