esv: preserve compatibility with the newest initial
This commit is contained in:
parent
d5cacb0401
commit
d68b83b722
1 changed files with 2 additions and 2 deletions
4
esv.d
4
esv.d
|
@ -218,14 +218,14 @@ key = %s
|
|||
]) {
|
||||
try
|
||||
esv.opts.b["include-" ~ key] =
|
||||
ini["passage"].keyAs!bool(key, "true");
|
||||
ini["passage"].keyAs!bool(key, true);
|
||||
catch (INITypeException e)
|
||||
die(configPath ~ ": " ~ e.msg);
|
||||
}
|
||||
/* Get line-length ([passage]) */
|
||||
try
|
||||
esv.opts.i["line-length"] =
|
||||
ini["passage"].keyAs!int("line-length", "0");
|
||||
ini["passage"].keyAs!int("line-length", 0);
|
||||
catch (INITypeException e)
|
||||
die(configPath ~ ": " ~ e.msg);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue