add missing #ifdef

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3431 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2006-04-25 02:40:58 +00:00
parent fcff1e7401
commit 714c522413

View File

@ -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