nano

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

commit e901387b7252c63c0eba02dc8b987647de6a8173
parent 280ac81b31106e39809d1e0042a0e56c4cf590fa
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 23 Oct 2018 19:42:07 +0200

tweaks: capitalize the word "nano" when at the start of a sentence

As is done in two other messages.

Diffstat:
Msrc/utils.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/utils.c b/src/utils.c @@ -357,7 +357,7 @@ void *nmalloc(size_t howmuch) void *r = malloc(howmuch); if (r == NULL && howmuch != 0) - die(_("nano is out of memory!\n")); + die(_("Nano is out of memory!\n")); return r; } @@ -369,7 +369,7 @@ void *nrealloc(void *ptr, size_t howmuch) void *r = realloc(ptr, howmuch); if (r == NULL && howmuch != 0) - die(_("nano is out of memory!\n")); + die(_("Nano is out of memory!\n")); return r; }