1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Style: line up with tabulators.

This commit is contained in:
Hartmut Brandt 2005-02-04 08:03:55 +00:00
parent 141d5e9f62
commit a9fe0a1150
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141255

View File

@ -121,9 +121,9 @@ static Token CondF(Boolean);
static Token CondE(Boolean);
static struct If {
char *form; /* Form of if */
int formlen; /* Length of form */
Boolean doNot; /* TRUE if default function should be negated */
char *form; /* Form of if */
int formlen; /* Length of form */
Boolean doNot; /* TRUE if default function should be negated */
CondProc *defProc; /* Default function to apply */
} ifs[] = {
{ "ifdef", 5, FALSE, CondDoDefined },
@ -757,9 +757,9 @@ CondToken(Boolean doEval)
}
default: {
CondProc *evalProc;
Boolean invert = FALSE;
char *arg;
int arglen;
Boolean invert = FALSE;
char *arg;
int arglen;
if (strncmp(condExpr, "defined", 7) == 0) {
/*