From f7e88617709f69bdb1ef45572f9489fe28f7b48e Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 26 Jul 2015 09:29:42 +0000 Subject: [PATCH] Tweaking a string, to match the --help text. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5321 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 4 +++- src/global.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9dfaa9a9..fb362d39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ do_findprevious), doc/man/nanorc.5, doc/texinfo/nano.texi: Add two new bindable functions, 'findnext' and 'findprevious', which repeat the last search command in a fixed direction without prompting. + * src/global.c (shortcut_init): Tweak a string. 2015-07-25 Benno Schulenberg * src/global.c (shortcut_init, strtosc), src/files.c (savefile), @@ -18,7 +19,8 @@ Suggested by Eitan Adler. * doc/faq.html: Mention --disable-histories and --disable-libmagic. * src/chars.c (mbstrcasestr, mbrevstrcasestr): When searching, find - only valid UTF-8 byte sequences. This fixes Savannah bug #45579. + only valid UTF-8 byte sequences. This fixes Savannah bug #45579, + first reported in 2009 by Mike Frysinger. 2015-07-22 Mike Frysinger * src/files.c (check_dotnano), src/global.c (thanks_for_all_the_fish), diff --git a/src/global.c b/src/global.c index e9e152e8..4b2319d9 100644 --- a/src/global.c +++ b/src/global.c @@ -599,7 +599,7 @@ void shortcut_init(void) const char *nano_refresh_msg = N_("Refresh (redraw) the current screen"); const char *nano_suspend_msg = - N_("Suspend the editor (if suspend is enabled)"); + N_("Suspend the editor (if suspension is enabled)"); #ifndef NANO_TINY const char *nano_savefile_msg = N_("Save file without prompting"); const char *nano_findprev_msg = N_("Search next occurrence backward");