# HG changeset patch # User Matthew Wild # Date 1273010869 -3600 # Node ID f37dc6f038f34b2d37c3cd1719b367cbeac0e9a8 # Parent 61e103d995787b1bae5a69449f20e2b8fc22ee21 configmanager: Fix some wacky indentation diff -r 61e103d99578 -r f37dc6f038f3 core/configmanager.lua --- a/core/configmanager.lua Sun Apr 11 01:30:31 2010 +0100 +++ b/core/configmanager.lua Tue May 04 23:07:49 2010 +0100 @@ -30,10 +30,11 @@ -- When key not found in section, check key in global's section function section_mt(section_name) return { __index = function (t, k) - local section = rawget(global_config, section_name); - if not section then return nil; end - return section[k]; - end }; + local section = rawget(global_config, section_name); + if not section then return nil; end + return section[k]; + end + }; end function getconfig()