nano

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

commit 1df41150130b448ba5f0eac9b18eedb26558e47a
parent ea9f62fc0f69b7e2119e8312c23ddf7e648738be
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Thu, 15 Dec 2016 12:38:47 +0100

version: properly mention --disable-wordcomp if it was used

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

diff --git a/src/nano.c b/src/nano.c @@ -1033,6 +1033,9 @@ void version(void) #ifdef DISABLE_TABCOMP printf(" --disable-tabcomp"); #endif +#ifndef ENABLE_WORDCOMPLETION + printf(" --disable-wordcomp"); +#endif #ifdef DISABLE_WRAPPING printf(" --disable-wrapping"); #endif