From 6918ff603f0b17f4b802fad825f3f526a774a60e Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 2 Aug 2025 02:42:26 +0200 Subject: [PATCH] append/string --- sh/core/code.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/core/code.awk b/sh/core/code.awk index 190c636..b57fd05 100644 --- a/sh/core/code.awk +++ b/sh/core/code.awk @@ -10,11 +10,11 @@ function alias_eval(alias, name, type) { print text "; }" } -function append(line) { +function append(string) { if (doc) { doc = doc "\n" } - doc = doc line + doc = doc string } function extract(string, type) {