Software /
code /
prosody
Changeset
1237:a30ca0d0df38
prosody: (un)lock_globals() -> prosody.(un)lock_globals()
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 30 May 2009 14:04:31 +0100 |
parents | 1236:eca772495e20 |
children | 1238:f4c08caca3e7 |
files | prosody |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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