nano

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

commit 9bce8bfeb35a0ea6a32a687aaf3eb3b90f090d3e
parent 2c024a74a98ae3737255fc4a3d0d0875348a3fa4
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Fri, 23 Mar 2018 19:14:56 +0100

build: fix compilation when configured with --disable-multibuffer

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

diff --git a/src/nano.c b/src/nano.c @@ -617,8 +617,9 @@ void die(const char *msg, ...) } filepart = NULL; +#ifdef ENABLE_MULTIBUFFER openfile = openfile->next; - +#endif if (openfile == firstone) break; }