commit 0d0df317f83ffc3b079b2d318b9ff4e858e335f8 parent 8c6f0e8ab423f508fc0ce0532c1006b13fc35089 Author: rsc <devnull@localhost> Date: Fri, 5 Mar 2004 06:03:26 +0000 Unfix non-bug. Diffstat:
M | src/cmd/acme/util.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/acme/util.c b/src/cmd/acme/util.c @@ -309,7 +309,7 @@ skipbl(Rune *r, int n, int *np) Rune* findbl(Rune *r, int n, int *np) { - while(n>0 && (*r!=' ' && *r!='\t' && *r!='\n')){ + while(n>0 && *r!=' ' && *r!='\t' && *r!='\n'){ --n; r++; }