commit 0e92adf153801067ffa9ac360f26af7048bf18c8
parent 3b722460b8c60c98e8d9c241e6be251d3db7240e
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 29 Jun 2006 15:28:39 +0000
in browser_refresh(), simplify the for loop
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3691 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -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)
diff --git a/src/browser.c b/src/browser.c
@@ -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);