From fa0c8dc8943bfd6612101009b08673b3b5c1b641 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 2 Aug 2025 20:03:36 +0200 Subject: [PATCH] new --- 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 cbbcf03..10ca584 100644 --- a/sh/core/code.awk +++ b/sh/core/code.awk @@ -2,8 +2,8 @@ # functions -function alias_eval(alias, name, type) { - text = alias "() { " +function alias_eval(new, name, type) { + text = new "() { " if (type == "function") { text = text name " \"${@}\"" } else if (type == "variable") {