diff options
author | nyamatongwe <unknown> | 2013-04-30 23:22:21 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-04-30 23:22:21 +1000 |
commit | bcad218ee669a93e4957971f670a31a8ac0a6735 (patch) | |
tree | e26c6edd702b9b69b85a5545cdc5a522650bf19d | |
parent | e9ab57baee0c857a7c1cb75be7159a0bfba3c89f (diff) | |
download | scintilla-mirror-bcad218ee669a93e4957971f670a31a8ac0a6735.tar.gz |
Bug: [#1468]. Latex highlighting breaks Unicode characters if preceeded by \.
From Colomban Wendling.
-rw-r--r-- | lexers/LexLaTeX.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lexers/LexLaTeX.cxx b/lexers/LexLaTeX.cxx index 6f9612d7b..f3b14054c 100644 --- a/lexers/LexLaTeX.cxx +++ b/lexers/LexLaTeX.cxx @@ -224,7 +224,7 @@ void SCI_METHOD LexerLaTeX::Lex(unsigned int startPos, int length, int initStyle chNext = styler.SafeGetCharAt(i + 1); } else if (chNext == '\r' || chNext == '\n') { styler.ColourTo(i, SCE_L_ERROR); - } else { + } else if (isascii(chNext)) { styler.ColourTo(i + 1, SCE_L_SHORTCMD); if (chNext == '(') { mode = 1; @@ -340,7 +340,7 @@ void SCI_METHOD LexerLaTeX::Lex(unsigned int startPos, int length, int initStyle chNext = styler.SafeGetCharAt(i + 1); } else if (chNext == '\r' || chNext == '\n') { styler.ColourTo(i, SCE_L_ERROR); - } else { + } else if (isascii(chNext)) { if (chNext == ')') { mode = 0; state = SCE_L_DEFAULT; @@ -382,7 +382,7 @@ void SCI_METHOD LexerLaTeX::Lex(unsigned int startPos, int length, int initStyle chNext = styler.SafeGetCharAt(i + 1); } else if (chNext == '\r' || chNext == '\n') { styler.ColourTo(i, SCE_L_ERROR); - } else { + } else if (isascii(chNext)) { if (chNext == ']') { mode = 0; state = SCE_L_DEFAULT; |