Skip to content

Commit

Permalink
Fix some quoted operator parsing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Nov 10, 2023
1 parent 314eecf commit e43a726
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 @@ -3571,7 +3571,7 @@ unsigned tokenize(parser *p, bool args, bool consing)
((*p->srcptr == ')') || (*p->srcptr == ';') || (*p->srcptr == ',') || (*p->srcptr == '.')))
p->quote_char = 1;

if (p->quote_char) {
if (p->quote_char && last_op) {
specifier = 0;
priority = 0;
}
Expand Down

0 comments on commit e43a726

Please sign in to comment.