diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-04 14:39:18 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-04 14:39:18 -0700 |
commit | b422d99658d1fde0a288c48225a9ae5789c7a270 (patch) | |
tree | 6aeb3e2b14f1bbcca050161902a72c30ec355c13 /grep.h | |
parent | Merge branch 'sb/submodule-clone-retry' (diff) | |
parent | grep: further simplify setting the pattern type (diff) | |
download | tgif-b422d99658d1fde0a288c48225a9ae5789c7a270.tar.xz |
Merge branch 'jc/grep-commandline-vs-configuration'
"git -c grep.patternType=extended log --basic-regexp" misbehaved
because the internal API to access the grep machinery was not
designed well.
* jc/grep-commandline-vs-configuration:
grep: further simplify setting the pattern type
Diffstat (limited to 'grep.h')
-rw-r--r-- | grep.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -145,7 +145,6 @@ struct grep_opt { extern void init_grep_defaults(void); extern int grep_config(const char *var, const char *value, void *); extern void grep_init(struct grep_opt *, const char *prefix); -void grep_set_pattern_type_option(enum grep_pattern_type, struct grep_opt *opt); void grep_commit_pattern_type(enum grep_pattern_type, struct grep_opt *opt); extern void append_grep_pat(struct grep_opt *opt, const char *pat, size_t patlen, const char *origin, int no, enum grep_pat_token t); |