]> git.wh0rd.org Git - nano.git/commitdiff
in edit_redraw(), make do_refresh a bool instead of an int
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 28 Jun 2005 05:56:16 +0000 (05:56 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 28 Jun 2005 05:56:16 +0000 (05:56 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2779 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 2634f184e68d064b94da56f72a120a796f15b920..5261319a01d223b80221b3b0d507c7ca6861578d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -342,6 +342,8 @@ CVS code -
   statusbar()
        - Set statusblank to 25 instead of 26, to match current Pico.
          (DLR)
+  edit_redraw()
+       - Make do_refresh a bool instead of an int. (DLR)
   do_yesno()
        - Allow refreshing the screen via Ctrl-L, as Pico does. (DLR)
        - Add a missing assert, and use actual_x() to calculate the
@@ -956,7 +958,7 @@ GNU nano 1.3.5 - 2004.11.22
          functions open_file(), execute_command(), and mallocstrassn();
          changes to read_line(), load_file(), read_file(), open_file(),
          get_next_filename(), do_insertfile(), do_insertfile_void(),
-         do_alt_speller(), and edit_refresh(). (David Benbennick) DLR:
+         do_alt_speller(), and edit_refresh(). (David Benbennick)  DLR:
          Add a few minor fixes to make sure that current is set
          properly in all cases, indicate on the statusbar when the file
          has a mix of DOS and Mac format lines, move the test for DOS
index bf5f82b45feee9e0378162538f1832c693cb0d0e..2400cd499bfa0d1f691c3568c84b4398bdf2f727 100644 (file)
@@ -3520,7 +3520,7 @@ void edit_scroll(updown direction, int nlines)
  * updated. */
 void edit_redraw(const filestruct *old_current, size_t old_pww)
 {
-    int do_refresh = need_vertical_update(0) ||
+    bool do_refresh = need_vertical_update(0) ||
        need_vertical_update(old_pww);
     const filestruct *foo;