nano

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

commit 9517972b58aa49faacf7b29dbca8da5a317b2da8
parent 95989e7dfe9da043d6ccd7f16372ccc36d872e9b
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 18 Mar 2018 16:33:21 +0100

build: fix compilation again when configured with --enable-tiny

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

diff --git a/src/nano.c b/src/nano.c @@ -1628,7 +1628,9 @@ bool wanted_to_move(void *func) func == do_up || func == do_down || func == do_home || func == do_end || func == do_prev_word_void || func == do_next_word_void || +#ifndef NANO_TINY func == do_para_begin_void || func == do_para_end_void || +#endif func == do_prev_block || func == do_next_block || func == do_page_up || func == do_page_down || func == to_first_line || func == to_last_line;