From 1ba023122a7c612f692df721086b49ce122b18c1 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Tue, 25 Jun 2024 16:19:57 +1200 Subject: [PATCH] esv: revise comments --- esv.d | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/esv.d b/esv.d index 4395de9..a3adea0 100644 --- a/esv.d +++ b/esv.d @@ -121,9 +121,8 @@ main(string[] args) enforceDie(verseValid(args[2]), "invalid verse format '%s'", args[2]); - /* determine configuration file - * Options have first priority, then environment variables, - * then the default path */ + /* determine configuration file: options take first priority, + * then environment variables, and then the default path */ config: configPath = environment.get(cf.configEnv, cf.configPath).expandTilde(); try { @@ -183,9 +182,7 @@ key = %s player ~ " is required for audio mode; cannot continue"); /* esv has built-in support for mpg123 and mpv. - * other players will work, just recompile with - * the DEFAULT_MPEGPLAYER enum set differently - * or use the ESV_PLAYER environment variable */ + * Other players will work, just set ESV_PLAYER */ player ~= player == "mpg123" ? " -q " : player == "mpv" ? " --msg-level=all=no " : " ";