Fix to cut.c for cutting entire file with marker
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@206 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
bf9da287a0
commit
429a5518ea
|
@ -1,4 +1,10 @@
|
||||||
CVS code -
|
CVS code -
|
||||||
|
- cut.c:
|
||||||
|
do_cut_text()
|
||||||
|
- Don't immediately abort if we're on filebot and the marker is
|
||||||
|
set (fixes unable to select and cut entire file bug,
|
||||||
|
discovered by Ken Tyler).
|
||||||
|
|
||||||
nano-0.9.17 - 09/04/2000
|
nano-0.9.17 - 09/04/2000
|
||||||
- General
|
- General
|
||||||
- New shortcuts to toggle certain options that are normally only
|
- New shortcuts to toggle certain options that are normally only
|
||||||
|
|
2
cut.c
2
cut.c
|
@ -152,7 +152,7 @@ int do_cut_text(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Must let cutbuffer get blown away first before we do this... */
|
/* Must let cutbuffer get blown away first before we do this... */
|
||||||
if (fileptr == filebot)
|
if (fileptr == filebot && !ISSET(MARK_ISSET))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
#ifndef NANO_SMALL
|
#ifndef NANO_SMALL
|
||||||
|
|
Loading…
Reference in New Issue