nano

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

commit 954aba7430180c8b9978a798b38f04760b5d4d81
parent 3435a0ff64282394c55083b0a30b4057cdf01a4f
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 17 Jun 2005 21:21:10 +0000

formatting fix


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

Diffstat:
Msrc/winio.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -3767,10 +3767,10 @@ void do_cursorpos(bool constant) int bytepct = (totsize == 0) ? 0 : 100 * i / totsize; statusbar( - _("line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)"), - current->lineno, totlines, linepct, - (unsigned long)xpt, (unsigned long)cur_len, colpct, - (unsigned long)i, (unsigned long)totsize, bytepct); + _("line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)"), + current->lineno, totlines, linepct, (unsigned long)xpt, + (unsigned long)cur_len, colpct, (unsigned long)i, + (unsigned long)totsize, bytepct); disable_cursorpos = FALSE; }