diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-23 18:39:49 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-23 18:47:39 -0700 |
commit | 599f8d63140f3626604d4fc83a48cd00c67b804a (patch) | |
tree | ff413c020470a22922c1e304a1463eaefca6c5b8 /builtin-grep.c | |
parent | d828f6ddf8bc33f848688655b94c82791edfe0d7 (diff) | |
download | git-599f8d63140f3626604d4fc83a48cd00c67b804a.tar.gz |
builtin-grep.c: remove unused debugging piece.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-grep.c')
-rw-r--r-- | builtin-grep.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/builtin-grep.c b/builtin-grep.c index 0bd517b264..8213ce2402 100644 --- 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); } |