aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-30 14:04:31 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-30 14:04:31 +0100
commit7aab9d77ca7d1bf16eff0b589263609f1c01f0c2 (patch)
treeba1d49523b79d059a25615a739fcd501705c8f42 /prosody
parentcb3a7f8168f7b43816e844c0d5c3b8603a549510 (diff)
downloadprosody-7aab9d77ca7d1bf16eff0b589263609f1c01f0c2.tar.gz
prosody-7aab9d77ca7d1bf16eff0b589263609f1c01f0c2.zip
prosody: (un)lock_globals() -> prosody.(un)lock_globals()
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody4
1 files 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