From: Robert Siemborski Date: Sun, 18 Jun 2000 01:05:00 +0000 (+0000) Subject: Fixes faiure of display to update in do_insertfile X-Git-Tag: v0.9.11~20 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=10eab1dad82c9838e5d7914501fdeefeeef3aa9a;p=nano.git 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 --- diff --git a/ChangeLog b/ChangeLog index 35e3c249..6f069e1e 100644 --- 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 index 48e2c9f3..84eaef02 100644 --- 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;