nano

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

commit 10eab1dad82c9838e5d7914501fdeefeeef3aa9a
parent 53154a746877c1e54388b59c36f358204235a795
Author: Robert Siemborski <rjs3@andrew.cmu.edu>
Date:   Sun, 18 Jun 2000 01:05:00 +0000

Fixes faiure of display to update in do_insertfile


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

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

diff --git a/ChangeLog b/ChangeLog @@ -12,6 +12,9 @@ since last release (CVS Only) - 06/06/2000 - experimental do_wrap and check_wrap (Adam Rogoyski) do_enter(): - Added reset of placewewant to end. + do_insertfile(): + - Fix display problem when using ctrl-r to load a file + into the buffer (Rob Siemborski) nano-0.9.10 - 06/04/2000 - es.po: diff --git a/nano.c b/nano.c @@ -540,6 +540,7 @@ int do_insertfile(void) dump_buffer(fileage); set_modified(); + edit_update(current); UNSET(KEEP_CUTBUFFER); display_main_list(); return i;