nano

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

commit 96514a242f8ca8d857642680fa7dcba7d8b7ddbe
parent 6b90657d9400cc16e695f8d10aeda9da98398c4a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sun,  2 Jul 2006 18:49:30 +0000

add clarifying comment


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

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

diff --git a/src/browser.c b/src/browser.c @@ -498,6 +498,8 @@ void browser_init(const char *path, DIR *dir) if (longest > COLS) longest = COLS; + /* We need 8 columns to display "(dir)" or a file size with padding. + * We need twice that to display "(parent dir)" with padding. */ if (longest < 16) longest = 16; }