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: ...@@ -141,7 +141,7 @@ Loop:
if trim_white && only_white { if trim_white && only_white {
start = i; 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; break Loop;
} }
brace = true; brace = true;
......
...@@ -158,11 +158,11 @@ var tests = []*Test { ...@@ -158,11 +158,11 @@ var tests = []*Test {
}, },
// Bugs // Bugs
// &Test{ &Test{
// "{.section data}{.end} {header}\n", "{.section data}{.end} {integer}\n",
//
// " 77\n" " 77\n"
// }, },
} }
func TestAll(t *testing.T) { 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