1
0
mirror of https://github.com/golang/go synced 2024-11-22 11:54:50 -07:00

enable test and fix bug in white space before {

R=rsc
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=27404
CL=27404
This commit is contained in:
Rob Pike 2009-04-13 20:37:24 -07:00
parent fa7be65bc0
commit c1ed7d7d25
2 changed files with 6 additions and 6 deletions

View File

@ -141,7 +141,7 @@ Loop:
if trim_white && only_white {
start = i;
}
} else if i > t.p+1 { // have some text accumulated so stop before '{'
} else if i > t.p { // have some text accumulated so stop before '{'
break Loop;
}
brace = true;

View File

@ -158,11 +158,11 @@ var tests = []*Test {
},
// Bugs
// &Test{
// "{.section data}{.end} {header}\n",
//
// " 77\n"
// },
&Test{
"{.section data}{.end} {integer}\n",
" 77\n"
},
}
func TestAll(t *testing.T) {