diff -r eca772495e20 -r a30ca0d0df38 prosody --- a/prosody Sat May 30 14:01:12 2009 +0100 +++ b/prosody Sat May 30 14:04:31 2009 +0100 @@ -203,11 +203,11 @@ -- 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