From 714c5224134170dc7cd5960d0c7b9d2f9a78e610 Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 25 Apr 2006 02:40:58 +0000
Subject: [PATCH] add missing #ifdef

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3431 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/cut.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/cut.c b/src/cut.c
index 20be3ad4..4b458300 100644
--- 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
-- 
GitLab