Fixed numbers not highlighting after space

This commit is contained in:
Paulb23 2016-03-26 22:02:33 +00:00
parent 15d1fca061
commit cd07badee3
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static bool _is_text_char(CharType c) {
static bool _is_symbol(CharType c) {
return c!='_' && ((c>='!' && c<='/') || (c>=':' && c<='@') || (c>='[' && c<='`') || (c>='{' && c<='~') || c=='\t');
return c!='_' && ((c>='!' && c<='/') || (c>=':' && c<='@') || (c>='[' && c<='`') || (c>='{' && c<='~') || c=='\t' || c==' ');
}
static bool _is_char(CharType c) {