nano

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

commit 80605c3918377a2ed2f154d411bdb97c64c21875
parent d3012be095f3e943458eb2e33452972b154bc760
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue,  6 Mar 2018 12:05:04 +0100

tweaks: exclude an unlikely warning from the tiny version

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

diff --git a/src/nano.c b/src/nano.c @@ -180,7 +180,9 @@ void renumber(filestruct *line) ssize_t number; if (line == NULL) { +#ifndef NANO_TINY statusline(ALERT, "Trying to renumber nothing -- please report a bug"); +#endif return; }