]> Nishi Git Mirror - gwion.git/commitdiff
:art: linter indent
authorfennecdjay <fennecdjay@gmail.com>
Sun, 11 Sep 2022 00:06:19 +0000 (02:06 +0200)
committerfennecdjay <fennecdjay@gmail.com>
Sun, 11 Sep 2022 00:06:19 +0000 (02:06 +0200)
src/import/import_internals.c

index 2a7a52b730596f8ca6178d8f47c1e17286a332d4..d1fc02838f411d8b3df7bd10685d045366467cd9 100644 (file)
@@ -30,8 +30,9 @@ ANN void gwi_reset(const Gwi gwi) {
 }
 
 ANN static m_bool run_with_doc(const Gwi gwi, m_bool (*f)(const Gwi)) {
-  struct LintState ls     = {.builtin = true};
-  Lint             linter = {.mp = gwi->gwion->mp, .ls = &ls};
+  struct LintState ls     = {.builtin = true, };
+  Lint             linter = {.mp = gwi->gwion->mp, .ls = &ls, .nindent = 2};
+  lint_indent(&linter);
   lint(&linter, "{-}#!+ %s{0}\n", gwi->gwion->env->name);
   gwi->lint = &linter;
   return f(gwi);