Commit 0e92adf1 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in browser_refresh(), simplify the for loop

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3691 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 3b722460
Showing with 3 additions and 1 deletion
+3 -1
......@@ -13,6 +13,8 @@ CVS code -
- Refactor and simplify the mouse support, modeling it after
do_mouse() for consistency. (DLR)
- Remove unneeded call to blank_edit(). (DLR)
browser_refresh()
- Simplify the for loop. (DLR)
- doc/syntax/c.nanorc:
- Since .i and .ii are preprocessed C and C++ output, colorize
them here. (Mike Frysinger)
......
......@@ -534,7 +534,7 @@ void browser_refresh(void)
wmove(edit, 0, 0);
for (; i < filelist_len && line <= editwinrows - 1; i++) {
for (; i < filelist_len && line < editwinrows; i++) {
char *disp = display_string(tail(filelist[i]), 0, longest,
FALSE);
......
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