aboutsummaryrefslogtreecommitdiffstats
path: root/grep.h
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2011-08-01 19:20:53 +0200
committerJunio C Hamano <gitster@pobox.com>2011-08-01 16:09:15 -0700
commitba8ea7496f2b95c49fccb72ed6b332afbd865e7b (patch)
treec52a2d2007a2e209813df918dede0b05bbd08be8 /grep.h
parentb35acb53458d0f99ba2400b902980b35e5acc2d3 (diff)
downloadgit-ba8ea7496f2b95c49fccb72ed6b332afbd865e7b.tar.gz
grep: add option to show whole function as context
Add a new option, -W, to show the whole surrounding function of a match. It uses the same regular expressions as -p and diff to find the beginning of sections. Currently it will not display comments in front of a function, but those that are following one. Despite this shortcoming it is already useful, e.g. to simply see a more complete applicable context or to extract whole functions. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'grep.h')
-rw-r--r--grep.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/grep.h b/grep.h
index c5682973ea..ae50c45a4d 100644
--- a/grep.h
+++ b/grep.h
@@ -98,6 +98,7 @@ struct grep_opt {
int color;
int max_depth;
int funcname;
+ int funcbody;
char color_context[COLOR_MAXLEN];
char color_filename[COLOR_MAXLEN];
char color_function[COLOR_MAXLEN];