From: Thomas Levesque Date: Thu, 8 Mar 2018 11:05:32 +0000 (+0000) Subject: userdiff.c: add C# async keyword in diff pattern X-Git-Tag: v2.17.0-rc0~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a12cec99f8b64a0b99ae6f8a7e4724039406aea3;p=thirdparty%2Fgit.git userdiff.c: add C# async keyword in diff pattern Currently C# async methods are not shown in diff hunk headers. I just added the async keyword to the csharp method pattern so that they are properly detected. Signed-off-by: Thomas Levesque Signed-off-by: Junio C Hamano --- diff --git a/userdiff.c b/userdiff.c index dbfb4e13cd..b92caf42b2 100644 --- a/userdiff.c +++ b/userdiff.c @@ -138,7 +138,7 @@ PATTERNS("csharp", /* Keywords */ "!^[ \t]*(do|while|for|if|else|instanceof|new|return|switch|case|throw|catch|using)\n" /* Methods and constructors */ - "^[ \t]*(((static|public|internal|private|protected|new|virtual|sealed|override|unsafe)[ \t]+)*[][<>@.~_[:alnum:]]+[ \t]+[<>@._[:alnum:]]+[ \t]*\\(.*\\))[ \t]*$\n" + "^[ \t]*(((static|public|internal|private|protected|new|virtual|sealed|override|unsafe|async)[ \t]+)*[][<>@.~_[:alnum:]]+[ \t]+[<>@._[:alnum:]]+[ \t]*\\(.*\\))[ \t]*$\n" /* Properties */ "^[ \t]*(((static|public|internal|private|protected|new|virtual|sealed|override|unsafe)[ \t]+)*[][<>@.~_[:alnum:]]+[ \t]+[@._[:alnum:]]+)[ \t]*$\n" /* Type definitions */