nano

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

commit 95e0cf584cf1ffdb78af33e4c67685407411fe2b
parent 5a9e25ae336021c1299d7968a94f0126af7f8197
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  2 Jan 2003 16:32:20 +0000

fix silly typo (#ifdef -> #ifndef) keeping nano -w from working


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1333 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Mnano.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nano.c b/nano.c @@ -3251,7 +3251,7 @@ int main(int argc, char *argv[]) case 'v': SET(VIEW_MODE); break; -#ifdef DISABLE_WRAPPING +#ifndef DISABLE_WRAPPING case 'w': SET(NO_WRAP); break;