nano

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

commit d3a1ff6a33411d597fb7585c28afb1bdbb4e53ce
parent 0018d8ed6f8f5d225ea4daeececec19c23d25ba7
Author: Chris Allegretta <chrisa@asty.org>
Date:   Thu, 13 Mar 2008 17:48:16 +0000

Fix multibuffer mode not showing "Close" string anymore
on buffer open/closer.


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

Diffstat:
Msrc/files.c | 1+
Msrc/nano.c | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -952,6 +952,7 @@ void do_insertfile( break; } } + shortcut_init(FALSE); free(ans); } diff --git a/src/nano.c b/src/nano.c @@ -1010,6 +1010,7 @@ void do_exit(void) } else if (i != 1) statusbar(_("Cancelled")); + shortcut_init(FALSE); display_main_list(); }