grep: add option -p/--show-function
commit2944e4e6145bdfcb1a8730d7da671786d72c86ed
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>
Wed, 1 Jul 2009 22:06:34 +0000 (2 00:06 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 2 Jul 2009 02:16:49 +0000 (1 19:16 -0700)
treea0a293f3b48ec4a732eb4f1743f8cf6b15b041d1
parent49de3216983cc921ea66ade18a8521d4d74bbf3f
grep: add option -p/--show-function

The new option -p instructs git grep to print the previous function
definition as a context line, similar to diff -p.  Such context lines
are marked with an equal sign instead of a dash.  This option
complements the existing context options -A, -B, -C.

Function definitions are detected using the same heuristic that diff
uses.  User defined regular expressions are not supported, yet.

Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-grep.txt
builtin-grep.c
grep.c
grep.h
t/t7002-grep.sh