From 3d9146ba2811923eca07a2271f235d256739076e Mon Sep 17 00:00:00 2001 From: Tai Chi Minh Ralph Eastwood Date: Sat, 16 Oct 2021 10:47:06 +0200 Subject: Fix incorrect path variable check Signed-off-by: Tai Chi Minh Ralph Eastwood --- edconf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edconf.lua b/edconf.lua index da3c32d..25edf6b 100644 --- a/edconf.lua +++ b/edconf.lua @@ -178,7 +178,7 @@ function ec_iter(p) end function ec_set_values(file) - if path then + if file.path then for name, value in ec_iter(file.path) do if OPTIONS[name] then OPTIONS[name](value, file) -- cgit