nano

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

commit a03d9c0ecd4edaf004a7e57aa525860f88d86d22
parent 23bdb271552d14d684af63211615c0dcb5617792
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 16 Sep 2005 17:24:22 +0000

fix another minor spacing problem in titlebar()


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

Diffstat:
Msrc/winio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/winio.c b/src/winio.c @@ -2846,7 +2846,7 @@ void titlebar(const char *path) if (!newfie) { size_t lenpt = strlenpt(path), start_col; - dots = (lenpt > space); + dots = (lenpt >= space); if (dots) { start_col = lenpt - space + 3;