From 7aab9d77ca7d1bf16eff0b589263609f1c01f0c2 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 30 May 2009 14:04:31 +0100 Subject: prosody: (un)lock_globals() -> prosody.(un)lock_globals() --- prosody | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prosody b/prosody index 60ea85b6..bd0bd088 100755 --- a/prosody +++ b/prosody @@ -203,11 +203,11 @@ end -- Catch global accesses -- local locked_globals_mt = { __index = function (t, k) error("Attempt to read a non-existent global '"..k.."'", 2); end, __newindex = function (t, k, v) error("Attempt to set a global: "..tostring(k).." = "..tostring(v), 2); end } -function unlock_globals() +function prosody.unlock_globals() setmetatable(_G, nil); end -function lock_globals() +function prosody.lock_globals() setmetatable(_G, locked_globals_mt); end -- cgit v1.2.3