aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel van Lohuizen <mpvl@golang.org>2011-10-31 10:58:04 +0100
committerMarcel van Lohuizen <mpvl@golang.org>2011-10-31 10:58:04 +0100
commiteef78091932aafec2b8030bc1927699b551d119b (patch)
treee87a06868bdccaa72ff882a556b4daab030513f8
parent0f6b80c69498d2047d584d365e4056ced9f38adc (diff)
downloadgo-eef78091932aafec2b8030bc1927699b551d119b.tar.gz
go-eef78091932aafec2b8030bc1927699b551d119b.zip
exp/norm: fixed bug that creeped in with moving to the new
regexp, which caused the last line of a test block to be ignored. R=r, rsc CC=golang-dev https://golang.org/cl/5177052
-rw-r--r--src/pkg/exp/norm/maketables.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/norm/maketables.go b/src/pkg/exp/norm/maketables.go
index 626f324a54..93edf221ef 100644
--- a/src/pkg/exp/norm/maketables.go
+++ b/src/pkg/exp/norm/maketables.go
@@ -764,7 +764,7 @@ func verifyComputed() {
}
}
-var qcRe = regexp.MustCompile(`^([0-9A-F\.]+) *; (NF.*_QC); ([YNM]) #.*$`)
+var qcRe = regexp.MustCompile(`([0-9A-F\.]+) *; (NF.*_QC); ([YNM]) #.*`)
// Use values in DerivedNormalizationProps.txt to compare against the
// values we computed.