From: David Lawrence Ramsey Date: Thu, 2 Jan 2003 16:32:20 +0000 (+0000) Subject: fix silly typo (#ifdef -> #ifndef) keeping nano -w from working X-Git-Tag: v1.1.99pre1~43 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=95e0cf584cf1ffdb78af33e4c67685407411fe2b;p=nano.git 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 --- diff --git a/nano.c b/nano.c index 5012e8b5..cbe94ecb 100644 --- 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;