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

more cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4085 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 17 additions and 15 deletions
+17 -15
...@@ -1816,6 +1816,7 @@ const toggle *get_toggle(int kbinput, bool meta_key) ...@@ -1816,6 +1816,7 @@ const toggle *get_toggle(int kbinput, bool meta_key)
void blank_line(WINDOW *win, int y, int x, int n) void blank_line(WINDOW *win, int y, int x, int n)
{ {
wmove(win, y, x); wmove(win, y, x);
for (; n > 0; n--) for (; n > 0; n--)
waddch(win, ' '); waddch(win, ' ');
} }
...@@ -1839,6 +1840,7 @@ void blank_topbar(void) ...@@ -1839,6 +1840,7 @@ void blank_topbar(void)
void blank_edit(void) void blank_edit(void)
{ {
int i; int i;
for (i = 0; i < editwinrows; i++) for (i = 0; i < editwinrows; i++)
blank_line(edit, i, 0, COLS); blank_line(edit, i, 0, COLS);
} }
......
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