From 18464b0028b5d0662d1cdcf2edb9e8b5c772c742 Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sun, 29 Dec 2024 13:01:16 +0100 Subject: [PATCH] :fire: big update, fixes --- src/env/func.c | 3 ++- src/import/import_checker.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/env/func.c b/src/env/func.c index 1a8ec052..c9659c42 100644 --- a/src/env/func.c +++ b/src/env/func.c @@ -63,7 +63,8 @@ ANN void print_signature(const Gwion gwion, const Func f) { struct GwfmtState ls = {.minimize=true, .ppa = gwion->ppa}; gwfmt_state_init(&ls); text_init(&ls.text, gwion->mp); - Gwfmt gwfmter = {.mp = gwion->mp, .st = gwion->st, .ls = &ls, .line = 1, .last = cht_nl}; + Gwfmt gwfmter = {.mp = gwion->mp, .st = gwion->st, .ls = &ls, .last = cht_nl}; + pos_ini(&gwfmter.pos); gwfmt_func_def(&gwfmter, f->def); gwlog_related_from(ls.text.str, f->value_ref->from); text_release(&ls.text); diff --git a/src/import/import_checker.c b/src/import/import_checker.c index 1298eca2..cbbb344b 100644 --- a/src/import/import_checker.c +++ b/src/import/import_checker.c @@ -361,7 +361,8 @@ ANEW ANN m_str tl2str(const Gwion gwion, const TmplArgList *tl, struct GwfmtState ls = {.minimize=true, .ppa = gwion->ppa, .color=false}; gwfmt_state_init(&ls); text_init(&ls.text, gwion->mp); - Gwfmt gwfmter = {.mp = gwion->mp, .st = gwion->st, .ls = &ls, .line = 1, .last = cht_nl }; + Gwfmt gwfmter = {.mp = gwion->mp, .st = gwion->st, .ls = &ls, .last = cht_nl }; + pos_ini(&gwfmter.pos); struct td_info info = {.tl = tl, .fmt = &gwfmter }; CHECK_O(td_info_run(gwion->env, &info)); return ls.text.str; -- 2.43.0