aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/parse.c b/src/parse.c
index e2d2498..f4ec69c 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -26,7 +26,6 @@ static struct term_handle abs_blc(char **term, size_t depth)
map_set(map_all_terms(), res_term);
}
- map_set(res_term->u.abs.term->parents, res_term);
return (struct term_handle){ .term = res_term, .hash = res };
}
@@ -49,9 +48,6 @@ static struct term_handle app_blc(char **term, size_t depth)
map_set(map_all_terms(), res_term);
}
- map_set(res_term->u.app.lhs->parents, res_term);
- map_set(res_term->u.app.rhs->parents, res_term);
-
return (struct term_handle){ .term = res_term, .hash = res };
}