nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 7d542076274bcafaf8eff63d6714e42502294595
parent 458933f09e379436c04ad787e28ace3c90ee908e
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sat, 26 Oct 2019 12:04:10 +0200

tweaks: be explicit about which program complained

Diffstat:
Msrc/text.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);