#477 keyword/api not valid if we have dot before

This commit is contained in:
BADIM-PC\Vadim 2018-01-11 13:46:23 +03:00
parent db77e93370
commit 87343a388f
1 changed files with 1 additions and 1 deletions

View File

@ -2119,7 +2119,7 @@ void parseCode(const tic_script_config* config, const char* start, u8* color, co
ptr += strlen(config->singleComment); ptr += strlen(config->singleComment);
continue; continue;
} }
else if(isalpha_(c) && isspace(ptr[-1])) else if(isalpha_(c) && ptr[-1] != '.')
{ {
wordStart = ptr; wordStart = ptr;
ptr++; ptr++;