minor fix

This commit is contained in:
CK Tan 2021-03-07 01:07:03 -08:00
parent 715fa54d45
commit 20bee50b59

5
toml.c
View file

@ -1626,8 +1626,6 @@ static int scan_string(context_t* ctx, char* p, int lineno, int dotisspecial)
break; break;
} }
char* tsq = strstr(p, "\'\'\'");
// the string is [p+3, q-1] // the string is [p+3, q-1]
int hexreq = 0; /* #hex required */ int hexreq = 0; /* #hex required */
@ -1653,9 +1651,6 @@ static int scan_string(context_t* ctx, char* p, int lineno, int dotisspecial)
if (hexreq) if (hexreq)
return e_syntax(ctx, lineno, "expected more hex char"); return e_syntax(ctx, lineno, "expected more hex char");
if (tsq && tsq < q) {
return e_syntax(ctx, lineno, "triple-s-quote inside string lit");
}
set_token(ctx, STRING, lineno, orig, q + 3 - orig); set_token(ctx, STRING, lineno, orig, q + 3 - orig);
return 0; return 0;
} }