nano

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

commit cf634d1aff374edca3929be2333de150fa155f12
parent edc0d6280acd7f6969d63d48c993cfe608b8e57d
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Wed,  6 Feb 2019 16:27:27 +0100

browser: show the ^G item again in the help lines

Also, prune another statement as MMOST no longer includes MBROWSER.

This fixes https://savannah.gnu.org/bugs/?55655.

Bug existed since version 3.2, commit cc01bc3e.

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

diff --git a/src/global.c b/src/global.c @@ -695,12 +695,12 @@ void shortcut_init(void) /* Start populating the different menus with functions. */ - add_to_funcs(do_help_void, MMOST & ~MFINDINHELP, + add_to_funcs(do_help_void, (MMOST | MBROWSER) & ~MFINDINHELP, /* TRANSLATORS: Try to keep the next ninety strings or so at most 10 * characters. Some strings may be longer -- run nano and see. */ N_("Get Help"), WITHORSANS(help_gist), TOGETHER, VIEW); - add_to_funcs(do_cancel, ((MMOST & ~MMAIN & ~MBROWSER) | MYESNO), + add_to_funcs(do_cancel, ((MMOST & ~MMAIN) | MYESNO), N_("Cancel"), WITHORSANS(cancel_gist), BLANKAFTER, VIEW); add_to_funcs(do_exit, MMAIN,