]> git.wh0rd.org Git - nano.git/commitdiff
- Take control-space out of -tiny build, unneeded
authorChris Allegretta <chrisa@asty.org>
Tue, 2 Oct 2001 03:54:13 +0000 (03:54 +0000)
committerChris Allegretta <chrisa@asty.org>
Tue, 2 Oct 2001 03:54:13 +0000 (03:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@812 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

nano.c

diff --git a/nano.c b/nano.c
index 230ae3ee1d15e7f2efc95b81e59e08d07a5c41ba..64ce7b553faef7afca42b1696efc9995d863b1cd 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -767,6 +767,7 @@ int do_enter_void(void)
     return do_enter(current);
 }
 
+#ifndef NANO_SMALL
 void do_next_word(void)
 {
     filestruct *fileptr, *old;
@@ -818,6 +819,7 @@ void do_next_word(void)
     }
 
 }
+#endif /* NANO_SMALL */
 
 #ifndef DISABLE_WRAPPING
 void do_wrap(filestruct * inptr, char input_char)
@@ -2999,9 +3001,12 @@ int main(int argc, char *argv[])
                break;
 #endif
 #endif
+
+#ifndef NANO_SMALL
            case 0:             /* Erg */
                do_next_word();
                break;
+#endif
 
            case -1:            /* Stuff that we don't want to do squat */
            case 410:           /* Must ignore this, it gets sent when we resize */