[geany/geany] 371301: c: Don't parse wchar_t as a keyword
Colomban Wendling
git-noreply at xxxxx
Thu Dec 25 00:36:27 UTC 2014
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Thu, 25 Dec 2014 00:36:27 UTC
Commit: 371301a84da81fdcd894715eb58af0efccd3a523
https://github.com/geany/geany/commit/371301a84da81fdcd894715eb58af0efccd3a523
Log Message:
-----------
c: Don't parse wchar_t as a keyword
Modified Paths:
--------------
tagmanager/ctags/c.c
Modified: tagmanager/ctags/c.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -506,7 +506,7 @@ static const keywordDesc KeywordTable [] = {
{ "virtual", KEYWORD_VIRTUAL, { 0, 1, 1, 0, 1, 1, 0 } },
{ "void", KEYWORD_VOID, { 1, 1, 1, 1, 1, 1, 1 } },
{ "volatile", KEYWORD_VOLATILE, { 1, 1, 1, 1, 0, 0, 1 } },
- { "wchar_t", KEYWORD_WCHAR_T, { 1, 1, 1, 0, 0, 0, 1 } },
+ { "wchar_t", KEYWORD_WCHAR_T, { 0, 1, 1, 0, 0, 0, 1 } },
{ "weak", KEYWORD_WEAK, { 0, 0, 0, 0, 0, 1, 0 } },
{ "while", KEYWORD_WHILE, { 1, 1, 1, 1, 0, 1, 1 } }
};
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list