diff options
Diffstat (limited to 'shell/msh_unused.c')
-rw-r--r-- | shell/msh_unused.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shell/msh_unused.c b/shell/msh_unused.c index d4fe3db..5468022 100644 --- a/shell/msh_unused.c +++ b/shell/msh_unused.c @@ -3873,9 +3873,10 @@ static char *blank(int f) scanequals = 0; for (;;) { c = subgetc('"', foundequals); - if (c == 0 || - f & (DOBLANK && any(c, ifs->value)) || - (!INSUB() && any(c, "\"'"))) { + if (c == 0 + || f & (DOBLANK && any(c, ifs->value)) + || (!INSUB() && any(c, "\"'")) + ) { scanequals = 0; unget(c); if (any(c, "\"'")) |