still more comment fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3498 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
31efe99e20
commit
4218206fec
|
@ -603,14 +603,14 @@ void browser_refresh(void)
|
||||||
/* Add some space between the columns. */
|
/* Add some space between the columns. */
|
||||||
col += 2;
|
col += 2;
|
||||||
|
|
||||||
/* If the next entry isn't going to fit on the line, move to the
|
/* If the next entry isn't going to fit on the current line,
|
||||||
* next line. */
|
* move to the next line. */
|
||||||
if (col > COLS - longest) {
|
if (col > COLS - longest) {
|
||||||
line++;
|
line++;
|
||||||
col = 0;
|
col = 0;
|
||||||
|
|
||||||
/* Set the number of columns to display the list in, if
|
/* Set the number of columns to display the list in, if
|
||||||
* necessary, so that we don't divide by 0. */
|
* necessary, so that we don't divide by zero. */
|
||||||
if (width == 0)
|
if (width == 0)
|
||||||
width = filecols;
|
width = filecols;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue