From 1dd525b86c5d5ce2766ef65fc554c35d55ef7157 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 6 Jul 2025 22:54:44 +0200 Subject: [PATCH] code/functions --- sh/main.sh | 2 +- sh/self.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/main.sh b/sh/main.sh index 79bdabd..89c915a 100755 --- a/sh/main.sh +++ b/sh/main.sh @@ -208,7 +208,7 @@ EOF # parse constants _rwx_code_constants="$(rwx_parse_constants)" # parse functions - RWX_FUNCTIONS="$(rwx_parse_functions)" + _rwx_code_functions="$(rwx_parse_functions)" # parse variables _rwx_code_variables="$(rwx_parse_variables)" } diff --git a/sh/self.sh b/sh/self.sh index adf266e..6ebb759 100644 --- a/sh/self.sh +++ b/sh/self.sh @@ -22,7 +22,7 @@ rwx_code_constants() { # show the cached functions #= rcf rwx_code_functions() { - echo "${RWX_FUNCTIONS}" + echo "${_rwx_code_functions}" } # show the cached variables