Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Mon, 16 Oct 2023 22:32:34 UTC Commit: 3955065df7644d12b006e5d31c43c8a15704266b https://github.com/geany/geany/commit/3955065df7644d12b006e5d31c43c8a1570426...
Log Message: ----------- Merge pull request #3604 from b4n/tag-goto-blooper
Fix blooper leading to incorrect variable formatting
Modified Paths: -------------- src/tagmanager/tm_parser.c
Modified: src/tagmanager/tm_parser.c 3 lines changed, 3 insertions(+), 0 deletions(-) =================================================================== @@ -1535,11 +1535,14 @@ gchar *tm_parser_format_variable(TMParserType lang, const gchar *name, const gch { case TM_PARSER_GO: ret = g_strconcat(name_full, " ", type, NULL); + break; case TM_PARSER_PASCAL: case TM_PARSER_PYTHON: ret = g_strconcat(name_full, ": ", type, NULL); + break; default: ret = g_strconcat(type, " ", name_full, NULL); + break; }
g_free(name_full);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).