Re: [PATCH v2 7/7] grep: add support for PCRE v2

2017-05-25 Thread Ævar Arnfjörð Bjarmason
On Wed, May 24, 2017 at 8:23 AM, Junio C Hamano wrote: > Ævar Arnfjörð Bjarmason writes: > >> Add support for v2 of the PCRE API. This is a new major version of >> PCRE that came out in early 2015[1]. >> >> The regular expression syntax is the same, but while the API is >> similar, pretty much e

Re: [PATCH v2 7/7] grep: add support for PCRE v2

2017-05-23 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: > Add support for v2 of the PCRE API. This is a new major version of > PCRE that came out in early 2015[1]. > > The regular expression syntax is the same, but while the API is > similar, pretty much every function is either renamed or takes > different arguments.

[PATCH v2 7/7] grep: add support for PCRE v2

2017-05-23 Thread Ævar Arnfjörð Bjarmason
Add support for v2 of the PCRE API. This is a new major version of PCRE that came out in early 2015[1]. The regular expression syntax is the same, but while the API is similar, pretty much every function is either renamed or takes different arguments. Thus using it via entirely new functions makes

[PATCH v2 7/7] grep: add support for PCRE v2

2017-05-13 Thread Ævar Arnfjörð Bjarmason
Add support for v2 of the PCRE API. This is a new major version of PCRE that came out in early 2015[1]. The regular expression syntax is the same, but while the API is similar, pretty much every function is either renamed or takes different arguments. Thus using it via entirely new functions makes