Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Fri, 28 Apr 2023 14:52:24 UTC Commit: c62b87955c8ed52f0425f61b2b8e828dd5f273db https://github.com/geany/geany/commit/c62b87955c8ed52f0425f61b2b8e828dd5f273...
Log Message: ----------- Autoit: drop $ from variable names
This patch has been upstreamed in
https://github.com/universal-ctags/ctags/pull/3697
Modified Paths: -------------- ctags/parsers/autoit.c tests/ctags/simple.au3.tags
Modified: ctags/parsers/autoit.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -283,7 +283,7 @@ static void findAutoItTags (void) skipSpaces (&p); if (*p == '$') { - vStringPut (name, (int) *p++); + p++; while (isIdentChar ((int) *p)) { vStringPut (name, (int) *p);
Modified: tests/ctags/simple.au3.tags 12 lines changed, 6 insertions(+), 6 deletions(-) =================================================================== @@ -1,9 +1,3 @@ -$iDoubled�16384�0 -variable: $iDoubled -$iMagic�16384�0 -variable: $iMagic -$iNumber�16384�0 -variable: $iNumber All functions�524288�0 other: All functions MyDouble�16�($iValue)�All functions�0 @@ -12,3 +6,9 @@ MyDouble0 function: All functions :: MyDouble0($iValue) MyDouble1�16�($iValue)�All functions�0 function: All functions :: MyDouble1($iValue) +iDoubled�16384�0 +variable: iDoubled +iMagic�16384�0 +variable: iMagic +iNumber�16384�0 +variable: iNumber
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).