From: David Lawrence Ramsey Date: Fri, 16 Sep 2005 17:24:22 +0000 (+0000) Subject: fix another minor spacing problem in titlebar() X-Git-Tag: v1.3.9~26 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a03d9c0ecd4edaf004a7e57aa525860f88d86d22;p=nano.git fix another minor spacing problem in titlebar() git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3020 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/winio.c b/src/winio.c index 02ef346c..17ca14bf 100644 --- 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;