From 7d542076274bcafaf8eff63d6714e42502294595 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 26 Oct 2019 12:04:10 +0200 Subject: [PATCH] tweaks: be explicit about which program complained --- src/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text.c b/src/text.c index 99346a80..073594f0 100644 --- a/src/text.c +++ b/src/text.c @@ -2580,7 +2580,7 @@ const char *treat(char *tempfile_name, char *theprogram, bool spelling) statusline(ALERT, _("Error invoking '%s'"), arguments[0]); return NULL; } else if (WEXITSTATUS(program_status) != 0) - statusline(ALERT, _("The invoked program complained")); + statusline(ALERT, _("Program '%s' complained"), arguments[0]); /* Stat the temporary file again. */ stat(tempfile_name, &fileinfo);