Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | regexp/syntax: fix factoring of common prefixes in alternations | Paul Wankadia | 2016-01-08 | 1 | -0/+5 |
| | | | | | | | | | | | | | In the past, `a.*?c|a.*?b` was factored to `a.*?[bc]`. Thus, given "abc" as its input string, the automaton would consume "ab" and then stop (when unanchored) whereas it should consume all of "abc" as per leftmost semantics. Fixes #13812. Change-Id: I67ac0a353d7793b3d0c9c4aaf22d157621dfe784 Reviewed-on: https://go-review.googlesource.com/18357 Reviewed-by: Russ Cox <rsc@golang.org> | ||||
* | regexp: trivial change in comments to update code.google.com link | Dmitry Savintsev | 2015-04-27 | 1 | -1/+2 |
| | | | | | | | | | | Replaced code.google.com/p/re2/ with github.com/google/re2/ and updated the file names (re2-exhaustive.txt.bz2 not re2.txt.gz) as well as the re2 make command (make log). Change-Id: I15937b0b8a898d78d45366857ed86421c8d69960 Reviewed-on: https://go-review.googlesource.com/9372 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> | ||||
* | build: move package sources from src/pkg to src | Russ Cox | 2014-09-08 | 7 | -0/+6439 |
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg. |