diff options
author | ache <ache@FreeBSD.org> | 1994-11-27 03:08:12 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-11-27 03:08:12 +0000 |
commit | 0195ab27b479798e963ac35c0561fe4e0e43e334 (patch) | |
tree | 8671f762423f5355ea45b1d9039aaeedb769828c /lib/libncurses/lib_insertln.c | |
parent | 127177257e1b1cf230c7c9a81b9bbeb09df79946 (diff) | |
download | FreeBSD-src-0195ab27b479798e963ac35c0561fe4e0e43e334.zip FreeBSD-src-0195ab27b479798e963ac35c0561fe4e0e43e334.tar.gz |
Add wrefresh before doing putp when idlok
Diffstat (limited to 'lib/libncurses/lib_insertln.c')
-rw-r--r-- | lib/libncurses/lib_insertln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libncurses/lib_insertln.c b/lib/libncurses/lib_insertln.c index 53bfcc1..c431440 100644 --- a/lib/libncurses/lib_insertln.c +++ b/lib/libncurses/lib_insertln.c @@ -23,6 +23,7 @@ int y, touched = 0; temp = win->_line[win->_regbottom]; if (win->_idlok && (insert_line != NULL)) { + wrefresh(win); if (back_color_erase) { T(("back_color_erase, turning attributes off")); vidattr(curscr->_attrs = A_NORMAL); |