nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 4218206fecac440a7c2af46b523e342ff0624fcd
parent 31efe99e209a6cf7dd3209dd5de4962706e16138
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Wed, 10 May 2006 16:09:36 +0000

still more comment fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3498 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/browser.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/browser.c b/src/browser.c @@ -603,14 +603,14 @@ void browser_refresh(void) /* Add some space between the columns. */ col += 2; - /* If the next entry isn't going to fit on the line, move to the - * next line. */ + /* If the next entry isn't going to fit on the current line, + * move to the next line. */ if (col > COLS - longest) { line++; col = 0; /* 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) width = filecols; }