nano

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

commit d84fb8d209c0fbdb9ef6a04ae22194ed19ced6dd
parent 14bf53ddfc02030181246d092711aa77dc3ce6e0
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sat, 28 Oct 2017 11:34:06 +0200

tweaks: remove a superfluous no-op function call

Reported-by: David Lawrence Ramsey <pooka109@gmail.com>

Diffstat:
Msrc/global.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/global.c b/src/global.c @@ -984,7 +984,7 @@ void shortcut_init(void) N_("Run Macro"), IFSCHELP(nano_runmacro_msg), BLANKAFTER, VIEW); add_to_funcs(do_search_backward, MMAIN, - N_("Where Was"), IFSCHELP(N_(nano_wherewas_msg)), BLANKAFTER, VIEW); + N_("Where Was"), IFSCHELP(nano_wherewas_msg), BLANKAFTER, VIEW); add_to_funcs(do_savefile, MMAIN, N_("Save"), IFSCHELP(nano_savefile_msg), BLANKAFTER, NOVIEW);