diff options
Diffstat (limited to 'src/cmd/gc/lex.c')
-rw-r--r-- | src/cmd/gc/lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/gc/lex.c b/src/cmd/gc/lex.c index a4f12313e..78394b89b 100644 --- a/src/cmd/gc/lex.c +++ b/src/cmd/gc/lex.c @@ -305,11 +305,11 @@ isfrog(int c) { if(c < 0) return 1; if(c < ' ') { - if(c == ' ' || c == '\n' || c== '\r' || c == '\t') // good white space + if(c == '\n' || c== '\r' || c == '\t') // good white space return 0; return 1; } - if(0x80 <= c && c <=0xa0) // unicode block including unbreakable space. + if(0x80 <= c && c <= 0xa0) // unicode block including unbreakable space. return 1; return 0; } |