Fix pass-through of configuration values to enable token re-expansion

This commit is contained in:
Jason Perkins 2012-11-09 10:48:43 -05:00
parent 80a60231db
commit 8e8beb4312

View File

@ -209,9 +209,6 @@
end
return cfg[key]
end,
__newindex = function(proxy, key, value)
cfg[key] = value
end
})
environ.cfg = proxy
@ -224,6 +221,9 @@
__index = function(cfg, key)
return cfg.context[key]
end,
__newindex = function(cfg, key, value)
cfg.context[key] = value
end
})