]> git.wh0rd.org Git - nano.git/commitdiff
miscellaneous minor fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 26 Aug 2006 16:50:51 +0000 (16:50 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 26 Aug 2006 16:50:51 +0000 (16:50 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3854 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/prompt.c
src/proto.h
src/search.c
src/winio.c

index c49c1f6245ee029e611ce0455f307ec1bcc5e992..626ca2524d53f2056dc2885390a8a9c80a608c46 100644 (file)
@@ -910,13 +910,13 @@ void update_statusbar_line(const char *curranswer, size_t index)
 }
 
 /* Return TRUE if we need an update after moving horizontally, and FALSE
- * otherwise.  We need one if old_pww and statusbar_pww are on different
- * pages. */
-bool need_statusbar_horizontal_update(size_t old_pww)
+ * otherwise.  We need one if pww_save and statusbar_pww are on
+ * different pages. */
+bool need_statusbar_horizontal_update(size_t pww_save)
 {
     size_t start_col = strlenpt(prompt) + 1;
 
-    return get_statusbar_page_start(start_col, start_col + old_pww) !=
+    return get_statusbar_page_start(start_col, start_col + pww_save) !=
        get_statusbar_page_start(start_col, start_col + statusbar_pww);
 }
 
index e17efac4d801949b7bdf51c50427ab04b8ab4241..4e13dde0f59117eed613dea11fa3ef32427ee65d 100644 (file)
@@ -518,7 +518,7 @@ size_t statusbar_xplustabs(void);
 size_t get_statusbar_page_start(size_t start_col, size_t column);
 void reset_statusbar_cursor(void);
 void update_statusbar_line(const char *curranswer, size_t index);
-bool need_statusbar_horizontal_update(size_t old_pww);
+bool need_statusbar_horizontal_update(size_t pww_save);
 void total_statusbar_refresh(void (*refresh_func)(void));
 int get_prompt_string(bool allow_tabs,
 #ifndef DISABLE_TABCOMP
@@ -773,10 +773,10 @@ void reset_cursor(void);
 void edit_draw(const filestruct *fileptr, const char *converted, int
        line, size_t start);
 void update_line(const filestruct *fileptr, size_t index);
-bool need_horizontal_update(size_t old_pww);
-bool need_vertical_update(size_t old_pww);
+bool need_horizontal_update(size_t pww_save);
+bool need_vertical_update(size_t pww_save);
 void edit_scroll(scroll_dir direction, ssize_t nlines);
-void edit_redraw(const filestruct *old_current, size_t old_pww);
+void edit_redraw(const filestruct *old_current, size_t pww_save);
 void edit_refresh(void);
 void edit_update(update_type location);
 void total_redraw(void);
index 1842d1205e907954b5084ef9e422cd279f7bd2b5..f7741dbe3dd95c7c484a9ddd34509f4ff0b72cad 100644 (file)
@@ -421,7 +421,7 @@ void do_search(void)
 {
     filestruct *fileptr = openfile->current;
     size_t fileptr_x = openfile->current_x;
-    size_t old_pww = openfile->placewewant;
+    size_t pww_save = openfile->placewewant;
     int i;
     bool didfind;
 
@@ -493,7 +493,7 @@ void do_search(void)
     }
 
     openfile->placewewant = xplustabs();
-    edit_redraw(fileptr, old_pww);
+    edit_redraw(fileptr, pww_save);
     search_replace_abort();
 }
 
@@ -503,7 +503,7 @@ void do_research(void)
 {
     filestruct *fileptr = openfile->current;
     size_t fileptr_x = openfile->current_x;
-    size_t old_pww = openfile->placewewant;
+    size_t pww_save = openfile->placewewant;
     bool didfind;
 
     search_init_globals();
@@ -555,7 +555,7 @@ void do_research(void)
         statusbar(_("No current search pattern"));
 
     openfile->placewewant = xplustabs();
-    edit_redraw(fileptr, old_pww);
+    edit_redraw(fileptr, pww_save);
     search_replace_abort();
 }
 #endif
index 49f30b3fa208adb002f38d1002627e5fa74f0ab0..bec32fe6f0077baf5734451fd36c6ebb11efc12b 100644 (file)
@@ -2706,28 +2706,28 @@ void update_line(const filestruct *fileptr, size_t index)
 }
 
 /* Return TRUE if we need an update after moving horizontally, and FALSE
- * otherwise.  We need one if the mark is on or if old_pww and
+ * otherwise.  We need one if the mark is on or if pww_save and
  * placewewant are on different pages. */
-bool need_horizontal_update(size_t old_pww)
+bool need_horizontal_update(size_t pww_save)
 {
     return
 #ifndef NANO_TINY
        openfile->mark_set ||
 #endif
-       get_page_start(old_pww) !=
+       get_page_start(pww_save) !=
        get_page_start(openfile->placewewant);
 }
 
 /* Return TRUE if we need an update after moving vertically, and FALSE
- * otherwise.  We need one if the mark is on or if old_pww and
+ * otherwise.  We need one if the mark is on or if pww_save and
  * placewewant are on different pages. */
-bool need_vertical_update(size_t old_pww)
+bool need_vertical_update(size_t pww_save)
 {
     return
 #ifndef NANO_TINY
        openfile->mark_set ||
 #endif
-       get_page_start(old_pww) !=
+       get_page_start(pww_save) !=
        get_page_start(openfile->placewewant);
 }
 
@@ -2837,10 +2837,10 @@ void edit_scroll(scroll_dir direction, ssize_t nlines)
 
 /* Update any lines between old_current and current that need to be
  * updated.  Use this if we've moved without changing any text. */
-void edit_redraw(const filestruct *old_current, size_t old_pww)
+void edit_redraw(const filestruct *old_current, size_t pww_save)
 {
     bool do_redraw = need_vertical_update(0) ||
-       need_vertical_update(old_pww);
+       need_vertical_update(pww_save);
     const filestruct *foo = NULL;
 
     /* If either old_current or current is offscreen, scroll the edit