Skip to content

Commit

Permalink
Small Fix. (#1040)
Browse files Browse the repository at this point in the history
Fixed C#(Java, JavaScript) keyword highlighting.
  • Loading branch information
devmynote authored Nov 6, 2021
1 parent 98cc2c2 commit 1fa2f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Externals/crystaledit/editlib/parsers/cplusplus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ CrystalLineParser::ParseLineCJava (unsigned dwCookie, const TCHAR *pszChars, int

if (nIdentBegin >= 0)
{
if (IsCppKeyword (pszChars + nIdentBegin, I - nIdentBegin))
if (IsKeyword (pszChars + nIdentBegin, I - nIdentBegin))
{
DEFINE_BLOCK (nIdentBegin, COLORINDEX_KEYWORD);
}
Expand Down

0 comments on commit 1fa2f4a

Please sign in to comment.