nano

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

commit 59eb01b403aa5255b5504d8fd26775c5eee5366b
parent 738487f13d89deb93aac825634a1f2e1fed04922
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 28 May 2018 11:31:30 +0200

build: fix compilation with --enable-{tiny,help,multibuffer}

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

diff --git a/src/global.c b/src/global.c @@ -1342,7 +1342,9 @@ void shortcut_init(void) /* Only when not in restricted mode, allow multiple buffers. */ if (!ISSET(RESTRICTED)) { add_to_sclist(MINSERTFILE|MEXTCMD, "M-F", 0, flip_newbuffer, 0); +#ifndef NANO_TINY add_to_sclist(MEXTCMD, "M-\\", 0, flip_pipe, 0); +#endif } #endif #ifdef ENABLE_BROWSER