configmanager: Fix very wacky indentation

Tue, 04 May 2010 23:11:41 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 04 May 2010 23:11:41 +0100
changeset 2975
c1a2e210f47e
parent 2974
f37dc6f038f3
child 2985
fde53d82fde0

configmanager: Fix very wacky indentation

core/configmanager.lua file | annotate | diff | comparison | revisions
--- a/core/configmanager.lua	Tue May 04 23:07:49 2010 +0100
+++ b/core/configmanager.lua	Tue May 04 23:11:41 2010 +0100
@@ -113,16 +113,19 @@
 	function parsers.lua.load(data, filename)
 		local env;
 		-- The ' = true' are needed so as not to set off __newindex when we assign the functions below
-		env = setmetatable({ Host = true; host = true; Component = true, component = true,
-							Include = true, include = true, RunScript = dofile }, { __index = function (t, k)
-												return rawget(_G, k) or
-														function (settings_table)
-															config[__currenthost or "*"][k] = settings_table;
-														end;
-										end,
-								__newindex = function (t, k, v)
-											set(env.__currenthost or "*", "core", k, v);
-										end});
+		env = setmetatable({
+			Host = true; host = true; Component = true, component = true,
+			Include = true, include = true, RunScript = dofile }, {
+				__index = function (t, k)
+					return rawget(_G, k) or
+						function (settings_table)
+							config[__currenthost or "*"][k] = settings_table;
+						end;
+				end,
+				__newindex = function (t, k, v)
+					set(env.__currenthost or "*", "core", k, v);
+				end
+		});
 		
 		rawset(env, "__currenthost", "*") -- Default is global
 		function env.Host(name)

mercurial