Age | Commit message (Expand) | Author | Files | Lines |
2022-01-10 | Merge branch 'lh/use-gnu-color-in-grep' | Junio C Hamano | 1 | -3/+3 |
2022-01-05 | Merge branch 'rs/pcre2-utf' | Junio C Hamano | 1 | -2/+2 |
2022-01-05 | grep: align default colors with GNU grep ones | Lénaïc Huard | 1 | -3/+3 |
2021-12-20 | grep/pcre2: factor out literal variable | René Scharfe | 1 | -2/+2 |
2021-12-20 | grep/pcre2: use PCRE2_UTF even with ASCII patterns | René Scharfe | 1 | -1/+1 |
2021-12-17 | log: let --invert-grep only invert --grep | René Scharfe | 1 | -3/+19 |
2021-11-19 | Revert "grep/pcre2: fix an edge case concerning ascii patterns and UTF-8 data" | Junio C Hamano | 1 | -4/+2 |
2021-10-15 | grep/pcre2: fix an edge case concerning ascii patterns and UTF-8 data | Hamza Mahfooz | 1 | -2/+4 |
2021-09-29 | grep: refactor next_match() and match_one_pattern() for external use | Hamza Mahfooz | 1 | -30/+49 |
2021-09-22 | grep: store grep_source buffer as const | Jeff King | 1 | -3/+6 |
2021-09-22 | grep: mark "haystack" buffers as const | Jeff King | 1 | -26/+35 |
2021-09-22 | grep: stop modifying buffer in grep_source_1() | Jeff King | 1 | -4/+1 |
2021-09-22 | grep: stop modifying buffer in show_line() | Jeff King | 1 | -3/+0 |
2021-09-22 | grep: stop modifying buffer in strip_timestamp | Jeff King | 1 | -10/+3 |
2021-09-08 | grep: add repository to OID grep sources | Jonathan Tan | 1 | -2/+5 |
2021-09-08 | grep: typesafe versions of grep_source_init | Jonathan Tan | 1 | -18/+28 |
2021-07-13 | Merge branch 'rs/grep-parser-fix' | Junio C Hamano | 1 | -0/+2 |
2021-06-30 | grep: report missing left operand of --and | René Scharfe | 1 | -0/+2 |
2021-04-27 | hash: provide per-algorithm null OIDs | brian m. carlson | 1 | -1/+1 |
2021-03-22 | Merge branch 'ab/grep-pcre2-allocfix' | Junio C Hamano | 1 | -56/+43 |
2021-03-13 | use CALLOC_ARRAY | René Scharfe | 1 | -4/+4 |
2021-02-17 | grep/pcre2: move definitions of pcre2_{malloc,free} | Ævar Arnfjörð Bjarmason | 1 | -24/+22 |
2021-02-17 | grep/pcre2: move back to thread-only PCREv2 structures | Ævar Arnfjörð Bjarmason | 1 | -26/+15 |
2021-02-17 | grep/pcre2: actually make pcre2 use custom allocator | Ævar Arnfjörð Bjarmason | 1 | -2/+2 |
2021-02-17 | grep/pcre2: use pcre2_maketables_free() function | Ævar Arnfjörð Bjarmason | 1 | -0/+4 |
2021-02-17 | grep/pcre2: use compile-time PCREv2 version test | Ævar Arnfjörð Bjarmason | 1 | -14/+4 |
2021-02-17 | grep/pcre2: add GREP_PCRE2_DEBUG_MALLOC debug mode | Ævar Arnfjörð Bjarmason | 1 | -0/+10 |
2021-02-17 | grep/pcre2: prepare to add debugging to pcre2_malloc() | Ævar Arnfjörð Bjarmason | 1 | -1/+2 |
2021-02-17 | grep/pcre2: correct reference to grep_init() in comment | Ævar Arnfjörð Bjarmason | 1 | -1/+1 |
2021-02-17 | grep/pcre2: drop needless assignment to NULL | Ævar Arnfjörð Bjarmason | 1 | -2/+0 |
2021-02-17 | grep/pcre2: drop needless assignment + assert() on opt->pcre2 | Ævar Arnfjörð Bjarmason | 1 | -3/+0 |
2021-02-10 | Merge branch 'ab/grep-pcre-invalid-utf8' | Junio C Hamano | 1 | -1/+17 |
2021-02-10 | Merge branch 'ab/retire-pcre1' | Junio C Hamano | 1 | -115/+2 |
2021-01-26 | grep/log: remove hidden --debug and --grep-debug options | Ævar Arnfjörð Bjarmason | 1 | -99/+2 |
2021-01-24 | grep/pcre2: better support invalid UTF-8 haystacks | Ævar Arnfjörð Bjarmason | 1 | -1/+17 |
2021-01-23 | Remove support for v1 of the PCRE library | Ævar Arnfjörð Bjarmason | 1 | -117/+2 |
2020-11-30 | grep: copy struct in one fell swoop | Martin Ågren | 1 | -23/+10 |
2020-11-21 | grep: use designated initializers for `grep_defaults` | Martin Ågren | 1 | -39/+25 |
2020-11-21 | grep: don't set up a "default" repo for grep | Martin Ågren | 1 | -2/+1 |
2020-07-29 | comment: fix spelling mistakes inside comments | Steve Kemp | 1 | -1/+1 |
2020-01-17 | grep: replace grep_read_mutex by internal obj read lock | Matheus Tavares | 1 | -20/+19 |
2020-01-17 | grep: fix race conditions on userdiff calls | Matheus Tavares | 1 | -1/+6 |
2019-11-30 | grep: don't return an expression from pcre2_free() | Hans Jerry Illikainen | 1 | -1/+1 |
2019-10-23 | Merge branch 'cb/pcre2-chartables-leakfix' | Junio C Hamano | 1 | -3/+44 |
2019-10-18 | grep: avoid leak of chartables in PCRE2 | Carlo Marcelo Arenas Belón | 1 | -3/+4 |
2019-10-18 | grep: make PCRE2 aware of custom allocator | Carlo Marcelo Arenas Belón | 1 | -1/+33 |
2019-10-18 | grep: make PCRE1 aware of custom allocator | Carlo Marcelo Arenas Belón | 1 | -0/+8 |
2019-10-11 | Merge branch 'cb/pcre1-cleanup' | Junio C Hamano | 1 | -6/+10 |
2019-10-11 | Merge branch 'ab/pcre-jit-fixes' | Junio C Hamano | 1 | -108/+70 |
2019-10-06 | Merge branch 'cb/skip-utf8-check-with-pcre1' | Junio C Hamano | 1 | -1/+1 |