From: David Lawrence Ramsey Date: Tue, 25 Apr 2006 02:40:58 +0000 (+0000) Subject: add missing #ifdef X-Git-Tag: v1.3.12~247 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=714c5224134170dc7cd5960d0c7b9d2f9a78e610;p=nano.git add missing #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3431 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- 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