From b69d14b89492919dc5c1669d2c569ee3baf1bbb0 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 4 Nov 2024 01:12:37 -0500 Subject: Add some missing functionality for Bytes --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parse.c') 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; -- cgit v1.2.3