aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-12-10 01:56:16 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-12-10 01:56:16 +0500
commit26df5eea856fb8b6f9a4b312eb8b5341fa828ad6 (patch)
tree163029b19b813c41f2aefc53b52865e8bb14a259 /prosody
parent5d568b20f190be63fb133e1b54b00deb82cb84bf (diff)
downloadprosody-26df5eea856fb8b6f9a4b312eb8b5341fa828ad6.tar.gz
prosody-26df5eea856fb8b6f9a4b312eb8b5341fa828ad6.zip
Mainfile: Broke up a really long line.
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody7
1 files changed, 5 insertions, 2 deletions
diff --git a/prosody b/prosody
index 7f69e085..95be55e3 100755
--- a/prosody
+++ b/prosody
@@ -284,8 +284,11 @@ function prepare_to_start()
end
function init_global_protection()
- -- 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 }
+ -- 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 prosody.unlock_globals()
setmetatable(_G, nil);