1
0
mirror of https://github.com/golang/go synced 2024-11-12 06:20:22 -07:00

gc: backslash newline is not a legal escape sequence in strings

Fixes #827.

R=ken2
CC=golang-dev, rsc
https://golang.org/cl/1592041
This commit is contained in:
Robert Griesemer 2010-06-07 18:10:48 -07:00
parent 440cc95470
commit 0c222d6e49

View File

@ -1160,7 +1160,6 @@ escchar(int e, int *escflg, vlong *val)
*escflg = 0;
loop:
c = getr();
switch(c) {
case EOF:
@ -1180,9 +1179,6 @@ loop:
c = getr();
switch(c) {
case '\n':
goto loop;
case 'x':
*escflg = 1; // it's a byte
i = 2;