code/functions

This commit is contained in:
Marc Beninca 2025-07-06 22:54:44 +02:00
parent 8a6c02a262
commit 1dd525b86c
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 2 additions and 2 deletions

View file

@ -208,7 +208,7 @@ EOF
# parse constants # parse constants
_rwx_code_constants="$(rwx_parse_constants)" _rwx_code_constants="$(rwx_parse_constants)"
# parse functions # parse functions
RWX_FUNCTIONS="$(rwx_parse_functions)" _rwx_code_functions="$(rwx_parse_functions)"
# parse variables # parse variables
_rwx_code_variables="$(rwx_parse_variables)" _rwx_code_variables="$(rwx_parse_variables)"
} }

View file

@ -22,7 +22,7 @@ rwx_code_constants() {
# show the cached functions # show the cached functions
#= rcf #= rcf
rwx_code_functions() { rwx_code_functions() {
echo "${RWX_FUNCTIONS}" echo "${_rwx_code_functions}"
} }
# show the cached variables # show the cached variables