nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 714c5224134170dc7cd5960d0c7b9d2f9a78e610
parent fcff1e74010c6857dc62e817935fb936721d48d0
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Tue, 25 Apr 2006 02:40:58 +0000

add missing #ifdef


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3431 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/cut.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 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