aboutsummaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorMarvin Borner2024-01-17 19:35:53 +0100
committerMarvin Borner2024-01-17 19:35:53 +0100
commit7bfd0540670cdf20d827dace7d720247ae3025d4 (patch)
tree26438a643b8d3418077306d103362d7de16b6dba /src/term.c
parent73deba308cd3874e574f6be27e03c4b100783ecd (diff)
Almost working shared blc
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index f93a50c..c7bf6d6 100644
--- a/src/term.c
+++ b/src/term.c
@@ -14,6 +14,7 @@ struct term *new_term(term_type type)
if (!term)
fatal("out of memory!\n");
term->type = type;
+ term->meta = 0;
return term;
}