]> git.wh0rd.org Git - nano.git/commitdiff
simplify total_update() to call clearok(TRUE) and wrefresh() on curscr,
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 16 Apr 2005 18:07:37 +0000 (18:07 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 16 Apr 2005 18:07:37 +0000 (18:07 +0000)
which updates the entire screen in fewer function calls

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

ChangeLog
src/winio.c

index 8603f64315bcd7a7b0a3ee019ba88d2ec8402838..2cf81bc291f9e8145bc10e168698ec45b4426e3a 100644 (file)
--- 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:
index 7874a47d4193361c35ff74316f103ba5262b489b..b818f5a35f117c82adcf301dc957ffcb0c2e9c55 100644 (file)
@@ -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)