aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-08-12 17:33:40 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-08-12 17:33:40 -0400
commit81812b46a0cca168adcde662b6e140adc7e23b1a (patch)
treeac02bed0e68e47f1d9f1867f01d39e490199545a /parse.c
parentbdf7c369edca612335e5b5edd24cab6be64c841d (diff)
Put back fallback
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 836d63d7..8ef8665e 100644
--- a/parse.c
+++ b/parse.c
@@ -794,7 +794,7 @@ PARSER(parse_table) {
whitespace(&pos);
expect_closing(ctx, &pos, "}", "I wasn't able to parse the rest of this table");
- return NewAST(ctx->file, start, pos, Table, .key_type=key_type, .value_type=value_type, .entries=entries);
+ return NewAST(ctx->file, start, pos, Table, .key_type=key_type, .value_type=value_type, .entries=entries, .fallback=fallback);
}
PARSER(parse_set) {