diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-31 09:21:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-02 15:38:14 -0700 |
commit | ad8c1d92600da963692d57c213979e638c357f1a (patch) | |
tree | 2fd7db3089b9b0351bcbdb100cf97246a6368f16 | |
parent | 5cbef01aab58e6d1feb0ea7b80c9111c2b40e561 (diff) | |
download | git-ad8c1d92600da963692d57c213979e638c357f1a.tar.gz git-ad8c1d92600da963692d57c213979e638c357f1a.tar.xz |
diff: add ruby funcname pattern
Provide a regexp that catches class, module and method definitions in
Ruby scripts, since the built-in default only finds classes.
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | diff.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1381,6 +1381,7 @@ static struct builtin_funcname_pattern { "[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}" "[ ]*([^;]*\\)$" }, { "tex", "^\\(\\\\\\(sub\\)*section{.*\\)$" }, + { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" }, }; static const char *diff_funcname_pattern(struct diff_filespec *one) |