From db6107c33df6a4fdb592ad29074d1159c37dc048 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 31 Aug 2025 16:22:29 -0400 Subject: Bugfix for argument aliases (merge issue) --- src/parse/functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/parse/functions.c b/src/parse/functions.c index 826fdbef..ceb0a8bc 100644 --- a/src/parse/functions.c +++ b/src/parse/functions.c @@ -76,7 +76,7 @@ arg_ast_t *parse_args(parse_ctx_t *ctx, const char **pos) { REVERSE_LIST(names); for (; names; names = names->next) - args = new (arg_ast_t, .start = names->start, .end = names->end, .name = names->name, .alias = names->name, + args = new (arg_ast_t, .start = names->start, .end = names->end, .name = names->name, .alias = names->alias, .type = type, .value = default_val, .next = args); if (!match_separator(ctx, pos)) break; -- cgit v1.2.3