Commit c1ed7d7d authored by Rob Pike's avatar Rob Pike

enable test and fix bug in white space before {

R=rsc
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=27404
CL=27404
parent fa7be65b
......@@ -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;
......
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment