Commit 75a29b74 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2942 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 2 deletions
+3 -2
...@@ -3563,7 +3563,7 @@ void edit_scroll(updown direction, int nlines) ...@@ -3563,7 +3563,7 @@ void edit_scroll(updown direction, int nlines)
} }
/* Update any lines between old_current and current that need to be /* Update any lines between old_current and current that need to be
* updated. */ * 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 old_pww)
{ {
bool do_redraw = need_vertical_update(0) || bool do_redraw = need_vertical_update(0) ||
...@@ -3605,7 +3605,8 @@ void edit_redraw(const filestruct *old_current, size_t old_pww) ...@@ -3605,7 +3605,8 @@ void edit_redraw(const filestruct *old_current, size_t old_pww)
update_line(openfile->current, openfile->current_x); update_line(openfile->current, openfile->current_x);
} }
/* Refresh the screen without changing the position of lines. */ /* Refresh the screen without changing the position of lines. Use this
* if we've moved and changed text. */
void edit_refresh(void) void edit_refresh(void)
{ {
const filestruct *foo; const filestruct *foo;
......
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