aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-04 01:12:37 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-04 01:12:37 -0500
commitb69d14b89492919dc5c1669d2c569ee3baf1bbb0 (patch)
tree4244c09bb428709f0e1f6e53f25e9125c4ae3cd4 /parse.c
parent81a180eda0efda86256b4aa2f8f6caecac3a9151 (diff)
Add some missing functionality for Bytes
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 0130673a..94f0cd0a 100644
--- a/parse.c
+++ b/parse.c
@@ -1764,7 +1764,7 @@ static ast_t *parse_infix_expr(parse_ctx_t *ctx, const char *pos, int min_tightn
else pos = key->end;
}
- spaces(&pos);
+ whitespace(&pos);
ast_t *rhs = parse_infix_expr(ctx, pos, op_tightness[op] + 1);
if (!rhs) break;
pos = rhs->end;