nano

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

commit f5234e583f938c5807952016cf860f9a4702dd68
parent ea2b51a41d135232ad1e7610111529c223aabb84
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Sun,  9 Aug 2015 18:12:32 +0000

Making a message sound more definitive instead of temporary.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5351 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 1+
Msrc/nano.c | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -7,6 +7,7 @@ Fix compilation with --enable-tiny; file formats are not available then, so option --unix has no place; also add its description. * src/nano.c (finish): Remove an unneeded and mistaken condition. + * src/nano.c (say_there_is_no_help): Make it sound more definitive. 2015-08-08 Benno Schulenberg <bensberg@justemail.net> * src/winio.c (display_string): For some reason the reallocation done diff --git a/src/nano.c b/src/nano.c @@ -607,7 +607,7 @@ void show_restricted_warning(void) /* Indicate that help texts are unavailable. */ void say_there_is_no_help(void) { - statusbar(_("Help is unavailable")); + statusbar(_("Help is not available")); } #endif