Merge branch '2.1' into 2.2

This commit is contained in:
Johan Wikman
2018-02-02 15:31:18 +02:00
15 changed files with 597 additions and 11 deletions

View File

@ -1251,7 +1251,7 @@ static void skip_token(const char** saved)
{
const char* ptr = *saved;
while (*ptr && !isspace(*ptr))
while (*ptr && !isspace(*ptr) && *ptr != '(' && *ptr != '.')
{
ptr++;
}