do not export inhert functions

This commit is contained in:
Daniel Poelzleithner 2022-04-19 12:41:06 +02:00
parent 075d64a069
commit 1b7bf7577f
1 changed files with 5 additions and 3 deletions

View File

@ -37,8 +37,11 @@ now = lsyncd.now
readdir = lsyncd.readdir readdir = lsyncd.readdir
inheritKV = nil local inherit = nil
local inheritKV = nil
local CountArray = nil
--
-- --
-- Recurvely inherits a source table to a destionation table -- Recurvely inherits a source table to a destionation table
-- copying all keys from source. -- copying all keys from source.
@ -189,7 +192,6 @@ local function loadCrontab()
return true return true
end end
return false return false
end end
-- --
@ -311,7 +313,7 @@ end )( )
-- since Lua's # operator does not work on tables whose key values are not -- since Lua's # operator does not work on tables whose key values are not
-- strictly linear. -- strictly linear.
-- --
local CountArray = ( function CountArray = ( function
( ) ( )
-- --
-- Metatable -- Metatable