diff --git a/ChangeLog b/ChangeLog index 8603f643..2cf81bc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,10 @@ CVS code - - utils.c: num_of_digits() - Use a ssize_t instead of an int. (DLR) +- winio.c: + total_update() + - Simplify to call clearok(TRUE) and wrefresh() on curscr, which + updates the entire screen in fewer function calls. (DLR) GNU nano 1.3.7 - 2005.04.10 - General: diff --git a/src/winio.c b/src/winio.c index 7874a47d..b818f5a3 100644 --- a/src/winio.c +++ b/src/winio.c @@ -3742,16 +3742,8 @@ int do_yesno(bool all, const char *msg) void total_update(void) { - clearok(topwin, TRUE); - clearok(edit, TRUE); - clearok(bottomwin, TRUE); - wnoutrefresh(topwin); - wnoutrefresh(edit); - wnoutrefresh(bottomwin); - doupdate(); - clearok(topwin, FALSE); - clearok(edit, FALSE); - clearok(bottomwin, FALSE); + clearok(curscr, TRUE); + wrefresh(curscr); } void total_refresh(void)