]> git.wh0rd.org Git - nano.git/commitdiff
rename total_update() total_redraw() for consistency
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Jun 2005 15:49:17 +0000 (15:49 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Jun 2005 15:49:17 +0000 (15:49 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2725 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c
src/nano.c
src/proto.h
src/winio.c

index 99625c9c1582cae13134c5f144355efee9192da0..1a9138a5bac8e3b1464a1345c08fe8b588ecb9bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -219,7 +219,7 @@ CVS code -
          (DLR)
   do_spell()
        - If the spell-checker printed any error messages onscreen, call
-         total_update() to make sure they're cleared off. (DLR, found
+         total_redraw() to make sure they're cleared off. (DLR, found
          by CHAO Wei-Lun)
   do_output()
        - Properly allow wrapping when we insert a tab, for consistency.
@@ -312,7 +312,7 @@ CVS code -
          (DLR)
   do_yesno()
        - Allow refreshing the screen via Ctrl-L, as Pico does. (DLR)
-  total_update()
+  total_redraw()
        - Simplify to call clearok(TRUE) and wrefresh() on edit, which
          updates the entire screen in fewer function calls. (DLR)
        - When using slang, use SLsmg_touch_screen() and SLsmg_refresh()
@@ -805,7 +805,7 @@ GNU nano 1.3.6 - 2005.03.20
        - Refresh bottomwin using the value of currshortcut, and change
          the code around do_refresh() calls to accommodate this. (DLR)
        - Split out the code that updates the screen before refreshing
-         it into the new function total_update().
+         it into the new function total_redraw().
   do_help()
        - Refresh the screen when Ctrl-L is pressed in the help browser,
          as Pico does. (DLR)
index 0c7562eb1b28b5d599e46f783f99bf55ae403af2..af0205f02dc8263f89ee3879588a4512314cf511 100644 (file)
@@ -2655,7 +2655,7 @@ char *do_browser(char *path, DIR *dir)
 
            /* Refresh the screen. */
            case NANO_REFRESH_KEY:
-               total_update();
+               total_redraw();
                break;
 
            /* Go to a specific directory. */
index c1dc528db8baaf8460a5aabbc68304491363d9d7..096753e9c6f41a4cf3e7e75007aca39cdff64b85 100644 (file)
@@ -2509,7 +2509,7 @@ void do_spell(void)
 
     /* If the spell-checker printed any error messages onscreen, make
      * sure they're cleared off. */
-    total_update();
+    total_redraw();
 
     if (spell_msg != NULL)
        statusbar(_("Spell checking failed: %s: %s"), spell_msg,
index 80a614509b151514e8a23eb151c4e41d26d8c5ea..5382ff24c8fa5f92ec713353861946fc73c5144f 100644 (file)
@@ -693,7 +693,7 @@ void edit_redraw(const filestruct *old_current, size_t old_pww);
 void edit_refresh(void);
 void edit_update(topmidnone location);
 int do_yesno(bool all, const char *msg);
-void total_update(void);
+void total_redraw(void);
 void total_refresh(void);
 void display_main_list(void);
 void do_cursorpos(bool constant);
index abbb7d72998319c02b878df098e7d3ff3fd090e5..68ca7121f643bdd8e76045aac72dd8f6f5a0ad36 100644 (file)
@@ -3664,7 +3664,7 @@ int do_yesno(bool all, const char *msg)
        kbinput = get_kbinput(edit, &meta_key, &func_key);
 
        if (kbinput == NANO_REFRESH_KEY) {
-           total_update();
+           total_redraw();
            continue;
        } else if (kbinput == NANO_CANCEL_KEY)
            ok = -1;
@@ -3705,7 +3705,7 @@ int do_yesno(bool all, const char *msg)
     return ok;
 }
 
-void total_update(void)
+void total_redraw(void)
 {
 #ifdef USE_SLANG
     /* Slang curses emulation brain damage, part 3: If we just do what
@@ -3721,7 +3721,7 @@ void total_update(void)
 
 void total_refresh(void)
 {
-    total_update();
+    total_redraw();
     titlebar(NULL);
     edit_refresh();
     bottombars(currshortcut);
@@ -3905,7 +3905,7 @@ void do_help(void)
        }
 
        if (kbinput == NANO_REFRESH_KEY)
-           total_update();
+           total_redraw();
        else {
            if (line == old_line && kbinput != ERR)
                goto skip_redisplay;