diff options
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1878,7 +1878,7 @@ void parse_init(void) parser_cls = cobj_register(parser_s); protect(&stream_parser_hash, &unique_s, &catch_all, convert(val *, 0)); - stream_parser_hash = make_hash(t, t, nil); + stream_parser_hash = make_hash(weak_and_k, nil, nil); catch_all = cons(t, nil); parser_l_init(); @@ -1897,9 +1897,3 @@ void parse_init(void) reg_fun(intern(lit("repl"), system_package), func_n4(repl)); reg_mac(json_s, func_n2(me_json)); } - -void parse_compat_fixup(int compat_ver) -{ - if (compat_ver <= 266) - tweak_hash(stream_parser_hash, t, nil); -} |