diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-03 00:32:29 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-03 00:32:29 -0800 |
commit | 281907574ca420cc9a800190509adbf89bf9a2d1 (patch) | |
tree | dc338b120a9447be2e97be7b1505ea3e8f9d4f9c | |
parent | Merge branch 'maint-1.6.0' into maint (diff) | |
parent | grep: pass -I (ignore binary) down to external grep (diff) | |
download | tgif-281907574ca420cc9a800190509adbf89bf9a2d1.tar.xz |
Merge branch 'maint-1.6.0' into maint
* maint-1.6.0:
grep: pass -I (ignore binary) down to external grep
-rw-r--r-- | builtin-grep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin-grep.c b/builtin-grep.c index bebf15cd6f..3f12ba3826 100644 --- a/builtin-grep.c +++ b/builtin-grep.c @@ -291,6 +291,8 @@ static int external_grep(struct grep_opt *opt, const char **paths, int cached) push_arg("-E"); if (opt->regflags & REG_ICASE) push_arg("-i"); + if (opt->binary == GREP_BINARY_NOMATCH) + push_arg("-I"); if (opt->word_regexp) push_arg("-w"); if (opt->name_only) |