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
master
Robert Siemborski 2000-06-18 01:05:00 +00:00
parent 53154a7468
commit 10eab1dad8
2 changed files with 4 additions and 0 deletions

View File

@ -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:

1
nano.c
View File

@ -540,6 +540,7 @@ int do_insertfile(void)
dump_buffer(fileage);
set_modified();
edit_update(current);
UNSET(KEEP_CUTBUFFER);
display_main_list();
return i;