summaryrefslogtreecommitdiff
path: root/grep.c
Commit message (Expand)AuthorAgeFilesLines
* grep: show non-empty lines before functions with -Wrs/include-comments-before-the-function-headerRené Scharfe2017-11-211-4/+23
* grep: update boundary variable for pre-contextRené Scharfe2017-11-211-6/+8
* Merge branch 'ab/pcre-v2'Junio C Hamano2017-11-151-1/+1
|\
| * grep: fix NO_LIBPCRE1_JIT to fully disable JITCharles Bailey2017-11-131-1/+1
* | Merge branch 'as/grep-quiet-no-match-exit-code-fix'Junio C Hamano2017-08-231-1/+1
|\ \
| * | git-grep: correct exit code with --quiet and -Las/grep-quiet-no-match-exit-code-fixAnthony Sottile2017-08-171-1/+1
* | | grep: recurse in-process using 'struct repository'Brandon Williams2017-08-021-13/+0
* | | grep: remove redundant REG_NEWLINE when compiling fixed regexab/grep-lose-opt-regflagsÆvar Arnfjörð Bjarmason2017-06-301-1/+1
* | | grep: remove regflags from the public grep_opt APIÆvar Arnfjörð Bjarmason2017-06-301-9/+34
* | | grep: remove redundant and verbose re-assignments to 0Ævar Arnfjörð Bjarmason2017-06-301-11/+0
* | | grep: remove redundant "fixed" field re-assignment to 0Ævar Arnfjörð Bjarmason2017-06-301-2/+0
* | | grep: adjust a redundant grep pattern type assignmentÆvar Arnfjörð Bjarmason2017-06-301-4/+1
* | | grep: remove redundant double assignment to 0Ævar Arnfjörð Bjarmason2017-06-301-1/+0
* | | Merge branch 'ab/free-and-null'Junio C Hamano2017-06-241-8/+4
|\ \ \
| * | | *.[ch] refactoring: make use of the FREE_AND_NULL() macroÆvar Arnfjörð Bjarmason2017-06-161-6/+3
| * | | coccinelle: make use of the "type" FREE_AND_NULL() ruleÆvar Arnfjörð Bjarmason2017-06-161-2/+1
* | | | Merge branch 'bw/config-h'Junio C Hamano2017-06-241-0/+1
|\ \ \ \
| * | | | config: don't include config.h by defaultBrandon Williams2017-06-151-0/+1
* | | | | Merge branch 'ab/pcre-v2'Junio C Hamano2017-06-241-1/+1
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | grep: fix erroneously copy/pasted variable in check/assert patternÆvar Arnfjörð Bjarmason2017-06-211-1/+1
* | | | | Merge branch 'bw/object-id'Junio C Hamano2017-06-191-10/+9
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | diff: convert fill_filespec to struct object_idBrandon Williams2017-06-021-1/+1
| * | | | grep: convert to struct object_idBrandon Williams2017-06-021-9/+8
| |/ / /
* | | | grep: add support for PCRE v2Ævar Arnfjörð Bjarmason2017-06-021-0/+145
* | | | grep: un-break building with PCRE < 8.32Ævar Arnfjörð Bjarmason2017-05-261-3/+3
* | | | grep: add support for the PCRE v1 JIT APIÆvar Arnfjörð Bjarmason2017-05-261-4/+36
| |/ / |/| |
* | | grep: move is_fixed() earlier to avoid forward declarationÆvar Arnfjörð Bjarmason2017-05-261-12/+12
* | | grep: change internal *pcre* variable & function names to be *pcre1*Ævar Arnfjörð Bjarmason2017-05-261-26/+26
* | | grep: change the internal PCRE macro names to be PCRE1Ævar Arnfjörð Bjarmason2017-05-261-3/+3
* | | grep: factor test for \0 in grep patterns into a functionÆvar Arnfjörð Bjarmason2017-05-261-7/+15
* | | grep: remove redundant regflags assignmentsÆvar Arnfjörð Bjarmason2017-05-261-5/+1
|/ /
* | convert unchecked snprintf into xsnprintfJeff King2017-03-301-2/+2
* | grep: set default output methodBrandon Williams2017-03-171-5/+7
|/
* grep: add submodules as a grep source typeBrandon Williams2016-12-221-1/+15
* Merge branch 'js/regexec-buf'Junio C Hamano2016-09-261-12/+2
|\
| * regex: use regexec_buf()Johannes Schindelin2016-09-211-12/+2
* | Merge branch 'js/am-3-merge-recursive-direct'Junio C Hamano2016-08-101-4/+4
|\ \
| * | die("bug"): report bugs consistentlyJohannes Schindelin2016-07-261-4/+4
* | | Merge branch 'jc/grep-commandline-vs-configuration'Junio C Hamano2016-08-041-11/+11
|\ \ \ | |/ / |/| |
| * | grep: further simplify setting the pattern typejc/grep-commandline-vs-configurationJunio C Hamano2016-07-251-11/+11
* | | Merge branch 'nd/icase'Junio C Hamano2016-07-191-7/+57
|\ \ \
| * | | grep.c: reuse "icase" variablend/icaseNguyễn Thái Ngọc Duy2016-07-011-4/+1
| * | | grep/pcre: support utf-8Nguyễn Thái Ngọc Duy2016-07-011-0/+2
| * | | grep/pcre: prepare locale-dependent tables for icase matchingNguyễn Thái Ngọc Duy2016-07-011-2/+6
| * | | grep: rewrite an if/else condition to avoid duplicate expressionNguyễn Thái Ngọc Duy2016-07-011-4/+1
| * | | grep/icase: avoid kwsset when -F is specifiedNguyễn Thái Ngọc Duy2016-07-011-1/+44
| * | | grep/icase: avoid kwsset on literal non-ascii stringsNguyễn Thái Ngọc Duy2016-06-271-1/+6
| * | | grep: break down an "if" stmt in preparation for next changesNguyễn Thái Ngọc Duy2016-06-271-1/+3
* | | | Merge branch 'rs/xdiff-hunk-with-func-line'Junio C Hamano2016-06-201-2/+26
|\ \ \ \
| * | | | grep: -W: don't extend context to trailing empty linesRené Scharfe2016-05-311-2/+26
| | |_|/ | |/| |