diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-18 22:08:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-18 22:08:58 -0700 |
commit | 9100c9dce166318d6962b9e6a498bd4dcecdacf4 (patch) | |
tree | 1cb3ee55500e161be882994413d08b01a901390c /builtin-grep.c | |
parent | Merge early part of branch 'jc/diff-apply-patch' (diff) | |
parent | teach revision walker about --all-match. (diff) | |
download | tgif-9100c9dce166318d6962b9e6a498bd4dcecdacf4.tar.xz |
Merge branch 'jc/grep'
* jc/grep:
teach revision walker about --all-match.
grep --all-match
Diffstat (limited to 'builtin-grep.c')
-rw-r--r-- | builtin-grep.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin-grep.c b/builtin-grep.c index 4205e5d38d..ad7dc00cde 100644 --- a/builtin-grep.c +++ b/builtin-grep.c @@ -596,6 +596,10 @@ int cmd_grep(int argc, const char **argv, const char *prefix) GREP_CLOSE_PAREN); continue; } + if (!strcmp("--all-match", arg)) { + opt.all_match = 1; + continue; + } if (!strcmp("-e", arg)) { if (1 < argc) { append_grep_pattern(&opt, argv[1], |