diff options
author | nyamatongwe <unknown> | 2010-05-17 02:48:46 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-05-17 02:48:46 +0000 |
commit | 7f38038656650505d5a04a7f7ae335a1fbf8f0a7 (patch) | |
tree | 15b23e490091f50a587503fcd409ef72ca09b529 /src/LexLisp.cxx | |
parent | 74d92c0f19f84c9f1f5f9e87130c89484db155f6 (diff) | |
download | scintilla-mirror-7f38038656650505d5a04a7f7ae335a1fbf8f0a7.tar.gz |
Fix debug assertions for bug #3000566.
Diffstat (limited to 'src/LexLisp.cxx')
-rw-r--r-- | src/LexLisp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexLisp.cxx b/src/LexLisp.cxx index e1d06cbac..ad5535f14 100644 --- a/src/LexLisp.cxx +++ b/src/LexLisp.cxx @@ -139,7 +139,7 @@ static void ColouriseLispDoc(unsigned int startPos, int length, int initStyle, W } } } else if (state == SCE_LISP_MACRO_DISPATCH) { - if (!isdigit(ch)) { + if (!(isascii(ch) && isdigit(ch))) { if (ch != 'r' && ch != 'R' && (i - styler.GetStartSegment()) > 1) { state = SCE_LISP_DEFAULT; } else { |