whitespace fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-01-25 13:39:24 +01:00
parent 46685a46bb
commit 3581c62515
15 changed files with 32 additions and 32 deletions

View File

@@ -2037,7 +2037,7 @@ static const char *next_brace_sub(const char *cp)
break;
cp++;
continue;
}
}
/*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
break;
if (*cp++ == '{') /*}*/

View File

@@ -2,6 +2,6 @@ func() {
eval "echo \"\${val_${1}}\""
}
val_x=24
val_x=24
(func x)
echo Done

View File

@@ -3,15 +3,15 @@
n=0
while :
do
echo A
while :
do
echo B
break
done
echo iteration
[ $n = 1 ] && break
echo A
while :
do
echo B
break
done
echo iteration
[ $n = 1 ] && break
echo C
n=`expr $n + 1`
n=`expr $n + 1`
done
echo D