replace almost all mvwaddstr(hblank) calls with mvwhline(' ', COLS)

calls, which do the same thing


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2840 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey
2005-07-09 04:49:09 +00:00
parent 56001845cd
commit a0ebc813f1
3 changed files with 14 additions and 9 deletions

View File

@@ -2581,7 +2581,7 @@ char *do_browser(char *path, DIR *dir)
if (j == selected)
wattron(edit, A_REVERSE);
mvwaddnstr(edit, editline, col, hblank, longest);
mvwhline(edit, editline, col, ' ', longest);
mvwaddstr(edit, editline, col, disp);
free(disp);