From a589571f8e338e4a23b2a04889e10d43992762ea Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sun, 21 Jan 2024 23:36:38 -0600 Subject: [PATCH] Expose the table module to orch scripts Signed-off-by: Kyle Evans --- orch.1 | 4 +++- orch.lua | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/orch.1 b/orch.1 index d8f0d5a..b41758c 100644 --- a/orch.1 +++ b/orch.1 @@ -111,7 +111,9 @@ and .Fn type functions, and the .Dq string -module are exposed. +and +.Dq table +modules are exposed. .Pp The following functions exist for usage within the .Ar scriptfile : diff --git a/orch.lua b/orch.lua index e0c5368..e1a1663 100644 --- a/orch.lua +++ b/orch.lua @@ -738,6 +738,7 @@ end -- Inherited from our environment orch_env.assert = assert orch_env.string = string +orch_env.table = table orch_env.type = type if #arg > 0 then