mirror of git://git.sv.gnu.org/nano.git
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
This commit is contained in:
parent
4990f74f83
commit
f7e8861770
|
@ -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 <bensberg@justemail.net>
|
||||
* 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 <vapier@gentoo.org>
|
||||
* src/files.c (check_dotnano), src/global.c (thanks_for_all_the_fish),
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue