Commit b0063678 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3760 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 99a06d34
Showing with 5 additions and 5 deletions
+5 -5
...@@ -2856,8 +2856,8 @@ void edit_redraw(const filestruct *old_current, size_t old_pww) ...@@ -2856,8 +2856,8 @@ void edit_redraw(const filestruct *old_current, size_t old_pww)
openfile->edittop = old_edittop; openfile->edittop = old_edittop;
/* Update old_current if we're not on the first page and/or /* Update old_current if we're not on the same page as
* we're not on the same page as before. */ * before. */
if (do_redraw) if (do_redraw)
update_line(old_current, 0); update_line(old_current, 0);
...@@ -2885,9 +2885,9 @@ void edit_redraw(const filestruct *old_current, size_t old_pww) ...@@ -2885,9 +2885,9 @@ void edit_redraw(const filestruct *old_current, size_t old_pww)
return; return;
} }
/* Update old_current and current if we're not on the first page /* Update old_current and current if we're not on the same page as
* and/or we're not on the same page as before. If the mark is on, * before. If the mark is on, update all the lines between
* update all the lines between old_current and current too. */ * old_current and current too. */
foo = old_current; foo = old_current;
while (foo != openfile->current) { while (foo != openfile->current) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment