diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-10 13:59:02 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-10 13:59:02 -0800 |
commit | 184a7aa7bf8e42ce9aba12b92d9cf8014d04a947 (patch) | |
tree | 625805572842c984cc7600e4880fdff4549e6558 /builtin | |
parent | Merge branch 'jl/submodule-re-add' into maint (diff) | |
parent | grep: fix -l/-L interaction with decoration lines (diff) | |
download | tgif-184a7aa7bf8e42ce9aba12b92d9cf8014d04a947.tar.xz |
Merge branch 'tr/grep-l-with-decoration' into maint
* tr/grep-l-with-decoration:
grep: fix -l/-L interaction with decoration lines
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/grep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index 9ce064ac11..5c2ae94e55 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -1034,8 +1034,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix) #ifndef NO_PTHREADS if (use_threads) { - if (opt.pre_context || opt.post_context || opt.file_break || - opt.funcbody) + if (!(opt.name_only || opt.unmatch_name_only || opt.count) + && (opt.pre_context || opt.post_context || + opt.file_break || opt.funcbody)) skip_first_line = 1; start_threads(&opt); } |