nano

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

commit 41ed01632f227618e432df0e985cdde267b3bcb8
parent 4839d23b119f58a94c1ee0596a5d247ff2dbdf65
Author: Chris Allegretta <chrisa@asty.org>
Date:   Tue, 24 Jul 2001 00:21:03 +0000

do_mark() - Temporarily disable cursorpos when enabled to be able to see the mark (un)set message (Ken Tyler)


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

Diffstat:
MChangeLog | 3+++
Mnano.c | 1+
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -6,6 +6,9 @@ CVS code - - nano.c: main() - Change the getop option to 'F' (David Lawrence Ramsey) + do_mark() + - Temporarily disable cursorpos when enabled to be able to see + the mark (un)set message (Ken Tyler). - nanorc.sample - Typo fixes and updates (David Lawrence Ramsey) - files.c: diff --git a/nano.c b/nano.c @@ -608,6 +608,7 @@ int do_mark(void) edit_refresh(); } #endif + SET(DISABLE_CURPOS); return 1; }