#477 keyword/api not valid if we have dot before
This commit is contained in:
		@@ -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++;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user