Here's a (hopefully) final version of this series. Changes since the v2 RFC: * Re-apply Frank Li's regerror() patch already in Git as v1.6.5-rc2~23. There was no need to apply another msvc fix, v1.7.0-rc0~15, because it had already been fixed upstream. * Include Jonathan Nieder's autoconf patch and add his Acked-by to the rest, add my Tested-by to his. * Fix text alignment in one of the commit messages. Note: This patch is intentionally diff --check unclean so we don't diverge from upstream. This series can also be pulled from http://github.com/avar/git/tree/update-fallback-regex-engine-v3 if the whitespace causes issues with git-am. Frank Li (1): Change regerror() declaration from K&R style to ANSI C (C89) Jonathan Nieder (1): autoconf: don't use platform regex if it lacks REG_STARTEND Ævar Arnfjörð Bjarmason (3): compat/regex: use the regex engine from gawk for compat compat/regex: get the gawk regex engine to compile within git t/t7008-grep-binary.sh: un-TODO a test that needs REG_STARTEND Makefile | 4 + compat/regex/regcomp.c | 3889 ++++++++++++++++++++++++++++++++ compat/regex/regex.c | 5003 +---------------------------------------- compat/regex/regex.h | 462 +++-- compat/regex/regex_internal.c | 1744 ++++++++++++++ compat/regex/regex_internal.h | 810 +++++++ compat/regex/regexec.c | 4377 +++++++++++++++++++++++++++++++++++ config.mak.in | 1 + configure.ac | 21 + t/t7008-grep-binary.sh | 2 +- 10 files changed, 11207 insertions(+), 5106 deletions(-) create mode 100644 compat/regex/regcomp.c create mode 100644 compat/regex/regex_internal.c create mode 100644 compat/regex/regex_internal.h create mode 100644 compat/regex/regexec.c -- 1.7.2.1.389.gc3d0b -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html