fix dofile of nil filename

pull/691/head
chrox 10 years ago
parent 7f03fc10be
commit a3a4e7f7fb

@ -55,9 +55,9 @@ function DocSettings:open(docfile)
sidecar_file = sidecar_path,
data = {}
}
local ok, stored = pcall(dofile, new.history_file)
local ok, stored = pcall(dofile, new.history_file or "")
if not ok then
ok, stored = pcall(dofile, new.sidecar_file)
ok, stored = pcall(dofile, new.sidecar_file or "")
if not ok then
-- try legacy conf path, for backward compatibility. this also
-- takes care of reader legacy setting

Loading…
Cancel
Save