prosody: (un)lock_globals() -> prosody.(un)lock_globals()

Sat, 30 May 2009 14:04:31 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 30 May 2009 14:04:31 +0100
changeset 1237
a30ca0d0df38
parent 1236
eca772495e20
child 1238
f4c08caca3e7

prosody: (un)lock_globals() -> prosody.(un)lock_globals()

prosody file | annotate | diff | comparison | revisions
--- 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
 

mercurial