diff options
Diffstat (limited to 'grep.c')
-rw-r--r-- | grep.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -85,6 +85,11 @@ static void grep_file(FILE *file) | |||
85 | 85 | ||
86 | } | 86 | } |
87 | else if (ret == REG_NOMATCH && invert_search) { | 87 | else if (ret == REG_NOMATCH && invert_search) { |
88 | if (be_quiet) { | ||
89 | regfree(®ex); | ||
90 | exit(0); | ||
91 | } | ||
92 | |||
88 | nmatches++; | 93 | nmatches++; |
89 | print_matched_line(line, linenum); | 94 | print_matched_line(line, linenum); |
90 | } | 95 | } |