tUnfix non-bug. - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 0d0df317f83ffc3b079b2d318b9ff4e858e335f8
DIR parent 8c6f0e8ab423f508fc0ce0532c1006b13fc35089
HTML 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(-)
---
DIR diff --git a/src/cmd/acme/util.c b/src/cmd/acme/util.c
t@@ -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++;
}