Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Oct 4, 2024
1 parent 4c5f7af commit 93a9204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -2799,7 +2799,7 @@ char *eat_space(parser *p)

static bool check_space_before_function(parser *p, int ch, const char *src)
{
if (iswspace(ch) && SB_strcmp(p->token, ".")) {
if (iswspace(ch) && (SB_strcmp(p->token, ".") || p->is_quoted)) {
p->srcptr = (char*)src;
//src = eat_space(p);

Expand Down

0 comments on commit 93a9204

Please sign in to comment.