diff options
| author | nyamatongwe <unknown> | 2010-05-13 01:30:06 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-05-13 01:30:06 +0000 | 
| commit | 74d92c0f19f84c9f1f5f9e87130c89484db155f6 (patch) | |
| tree | 8eb24653968c21beb97ca0350c3c5fe854bb816e /src/LexAVE.cxx | |
| parent | 9328c929f1e7259ec256f076eba0a47013a5fb62 (diff) | |
| download | scintilla-mirror-74d92c0f19f84c9f1f5f9e87130c89484db155f6.tar.gz | |
Fix debug assertions for bug #3000566.
Diffstat (limited to 'src/LexAVE.cxx')
| -rw-r--r-- | src/LexAVE.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/LexAVE.cxx b/src/LexAVE.cxx index 2b7029b1a..09b393343 100644 --- a/src/LexAVE.cxx +++ b/src/LexAVE.cxx @@ -42,7 +42,7 @@ inline bool IsAWordStart(const int ch) {  }  inline bool isAveOperator(char ch) { -	if (isalnum(ch)) +	if (isascii(ch) && isalnum(ch))  		return false;  	// '.' left out as it is used to make up numbers  	if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || | 
