aboutsummaryrefslogtreecommitdiffstats
path: root/edconf.lua
diff options
context:
space:
mode:
Diffstat (limited to 'edconf.lua')
-rw-r--r--edconf.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/edconf.lua b/edconf.lua
index f956704..da3c32d 100644
--- a/edconf.lua
+++ b/edconf.lua
@@ -178,11 +178,9 @@ function ec_iter(p)
end
function ec_set_values(file)
- if file.path then
+ if path then
for name, value in ec_iter(file.path) do
- if name:sub(1,4) == "vis_" then
- vis_set(name:sub(5,#name), value)
- elseif OPTIONS[name] then
+ if OPTIONS[name] then
OPTIONS[name](value, file)
end
end