comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3488 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-05-10 03:40:17 +00:00
parent cf8082f87f
commit 3cba266d4d
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ char *do_browser(char *path, DIR *dir)
check_statusblank(); check_statusblank();
/* Compute the line number we're on now, so that we don't divide /* Compute the line number we're on now, so that we don't divide
* by 0. */ * by zero. */
fileline = selected; fileline = selected;
if (width != 0) if (width != 0)
fileline /= width; fileline /= width;
@ -559,7 +559,7 @@ void browser_refresh(void)
char *disp = display_string(tail(filelist[i]), 0, longest, char *disp = display_string(tail(filelist[i]), 0, longest,
FALSE); FALSE);
/* Highlight the currently selected file/dir. */ /* Highlight the currently selected file or directory. */
if (i == selected) if (i == selected)
wattron(edit, A_REVERSE); wattron(edit, A_REVERSE);