diff --git a/Externals/crystaledit/editlib/parsers/cplusplus.cpp b/Externals/crystaledit/editlib/parsers/cplusplus.cpp index bbfcc86eaa7..877f165d75a 100644 --- a/Externals/crystaledit/editlib/parsers/cplusplus.cpp +++ b/Externals/crystaledit/editlib/parsers/cplusplus.cpp @@ -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); }