From eef78091932aafec2b8030bc1927699b551d119b Mon Sep 17 00:00:00 2001 From: Marcel van Lohuizen Date: Mon, 31 Oct 2011 10:58:04 +0100 Subject: [PATCH] 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 --- src/pkg/exp/norm/maketables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/exp/norm/maketables.go b/src/pkg/exp/norm/maketables.go index 626f324a545..93edf221ef8 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.