diff options
-rw-r--r-- | parser.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -385,8 +385,10 @@ void parser_resolve_circ(parser_t *p) void parser_circ_def(parser_t *p, val num, val expr) { - if (!p->circ_ref_hash) + if (!p->circ_ref_hash) { p->circ_ref_hash = make_hash(nil, nil, nil); + setcheck(p->parser, p->circ_ref_hash); + } { val new_p = nil; |