nano

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

commit c2f007afc51c61690198edec980be64f85348742
parent 8dc83951ee869f7b0264979b769244f004877cfd
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Wed, 11 Mar 2020 14:23:22 +0100

tweaks: trim an unnecessary detail from an error message

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

diff --git a/src/text.c b/src/text.c @@ -2294,7 +2294,7 @@ const char *do_int_speller(const char *tempfile_name) return _("Error invoking \"uniq\""); if (WIFEXITED(sort_status) == 0 || WEXITSTATUS(sort_status)) - return _("Error invoking \"sort -f\""); + return _("Error invoking \"sort\""); if (WIFEXITED(spell_status) == 0 || WEXITSTATUS(spell_status)) return _("Error invoking \"spell\"");