nano

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

commit 7401670d5889c7203ddb61e34257595378e39e75
parent 87fbe24283d8e099f8e6293a0b548da4599a4933
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Wed, 30 Nov 2016 11:05:07 +0100

tweaks: fix compilation when configured with --enable-tiny

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

diff --git a/src/winio.c b/src/winio.c @@ -406,6 +406,7 @@ int parse_kbinput(WINDOW *win) case 'D': retval = CONTROL_LEFT; break; +#ifndef NANO_TINY case 'a': retval = shiftaltup; break; @@ -418,6 +419,7 @@ int parse_kbinput(WINDOW *win) case 'd': retval = shiftaltleft; break; +#endif } double_esc = FALSE; escapes = 0;