From: Jim Meyering Date: Sun, 13 Sep 2009 20:05:37 +0000 (+0200) Subject: maint: use consistent cpp indentation in all .c files X-Git-Tag: v8.0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=255a6a201eaaef016ca909332f82bd86ef7d42ca;p=thirdparty%2Fcoreutils.git maint: use consistent cpp indentation in all .c files * src/stty.c: Make cpp indentation reflect nesting. * src/factor.c: Likewise. --- diff --git a/src/factor.c b/src/factor.c index 59fe1f45fd..fc78356945 100644 --- a/src/factor.c +++ b/src/factor.c @@ -26,7 +26,7 @@ #include #include #if HAVE_GMP -#include +# include #endif #include diff --git a/src/stty.c b/src/stty.c index b980e8482f..7b25b0bf8f 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},