diff options
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |