#477 keyword/api not valid if we have dot before
This commit is contained in:
parent
db77e93370
commit
87343a388f
|
@ -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++;
|
||||||
|
|
Loading…
Reference in New Issue