Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
describe: fix off-by-one error in --abbrev=40 handling
[gitweb.git]
/
builtin-grep.c
diff --git
a/builtin-grep.c
b/builtin-grep.c
index 0bd517b2649af37d9980f85e784f9a00c3263922..8213ce240232a1dc8a0a498972323a33e8fcb7a0 100644
(file)
--- a/
builtin-grep.c
+++ b/
builtin-grep.c
@@
-293,9
+293,6
@@
static void compile_patterns(struct grep_opt *opt)
*/
p = opt->pattern_list;
opt->pattern_expression = compile_pattern_expr(&p);
-#if DEBUG
- dump_pattern_exp(opt->pattern_expression, 0);
-#endif
if (p)
die("incomplete pattern expression: %s", p->pattern);
}