mirror of
https://github.com/golang/go
synced 2024-11-21 14:44:40 -07:00
gc: improve error message for x \= 0
was x.go:2: syntax error: unexpected $undefined now x.go:2: syntax error: unexpected \ R=ken2 CC=golang-dev https://golang.org/cl/2267044
This commit is contained in:
parent
ac771a8a47
commit
b1f44a120f
@ -538,7 +538,7 @@ isfrog(int c)
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
if(0x80 <= c && c <= 0xa0) // unicode block including unbreakable space.
|
||||
if(0x7f <= c && c <= 0xa0) // DEL, unicode block including unbreakable space.
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
@ -947,6 +947,10 @@ lx:
|
||||
yyerror("illegal character 0x%ux", c);
|
||||
goto l0;
|
||||
}
|
||||
if(importpkg == nil && (c == '#' || c == '$' || c == '?' || c == '@' || c == '\\')) {
|
||||
yyerror("%s: unexpected %c", "syntax error", c);
|
||||
goto l0;
|
||||
}
|
||||
return c;
|
||||
|
||||
asop:
|
||||
|
Loading…
Reference in New Issue
Block a user