From 95e0cf584cf1ffdb78af33e4c67685407411fe2b Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 2 Jan 2003 16:32:20 +0000
Subject: [PATCH] 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
---
 nano.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
GitLab