From 6e401a08674be8eb538132c865e99c356430e8f3 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 2 Aug 2025 20:01:43 +0200 Subject: [PATCH] shadow --- 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 ad854cf..cbbcf03 100644 --- a/sh/core/code.awk +++ b/sh/core/code.awk @@ -58,9 +58,9 @@ function extract(string, type) { } } -function strip_first(string, target, tmp) { +function strip_first(string, sep, tmp) { tmp = string - sub(target, "", tmp) + sub(sep, "", tmp) return trim(tmp) }