]> git.wh0rd.org Git - nano.git/commitdiff
add missing #ifdef
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Apr 2006 02:40:58 +0000 (02:40 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Apr 2006 02:40:58 +0000 (02:40 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3431 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/cut.c

index 20be3ad46b9f721f66a0472d09b7d76c9535fd59..4b45830057dd812180c72bef4434d7b570175c3c 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -188,7 +188,11 @@ void do_cut_text(
 /* Move text from the current filestruct into the cutbuffer. */
 void do_cut_text_void(void)
 {
-    do_cut_text(FALSE);
+    do_cut_text(
+#ifndef NANO_TINY
+       FALSE
+#endif
+       );
 }
 
 #ifndef NANO_TINY