Skip to content

Commit

Permalink
Fix (again) op/3
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Sep 19, 2024
1 parent 183f3bf commit eb6331a
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 @@ -3824,7 +3824,7 @@ unsigned tokenize(parser *p, bool args, bool consing)
if (!priority) specifier = 0;
eat_space(p);
int ch = peek_char_utf8(p->srcptr);
bool blah = !iswalpha(ch) && (ch != '_') && priority;
bool blah = !iswalpha(ch) && (ch != '_') && (ch != '(') && priority;

if (!blah) {
bool prefer_unifix = last_op || blah;
Expand Down

0 comments on commit eb6331a

Please sign in to comment.