builtin-grep: pass ignore case option to external grep
authorRobert Fitzsimons <robfitz@273k.net>
Tue, 6 Jun 2006 23:15:16 +0000 (23:15 +0000)
committerJunio C Hamano <junkio@cox.net>
Tue, 6 Jun 2006 23:22:45 +0000 (16:22 -0700)
Don't just read the --ignore-case/-i option, pass the flag on to the
external grep program.

Signed-off-by: Robert Fitzsimons <robfitz@273k.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-grep.c

index acc4eea..5fac570 100644 (file)
@@ -459,6 +459,8 @@ static int external_grep(struct grep_opt *opt, const char **paths, int cached)
                push_arg("-n");
        if (opt->regflags & REG_EXTENDED)
                push_arg("-E");
+       if (opt->regflags & REG_ICASE)
+               push_arg("-i");
        if (opt->word_regexp)
                push_arg("-w");
        if (opt->name_only)