]> Cypherpunks repositories - gostls13.git/commitdiff
exp/norm: fixed bug that creeped in with moving to the new
authorMarcel van Lohuizen <mpvl@golang.org>
Mon, 31 Oct 2011 09:58:04 +0000 (10:58 +0100)
committerMarcel van Lohuizen <mpvl@golang.org>
Mon, 31 Oct 2011 09:58:04 +0000 (10:58 +0100)
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

index 626f324a545cd9866e61bcf27016e69be54c0d22..93edf221ef8371c4b2f9a945ba515f836d6a8601 100644 (file)
@@ -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.