formatting fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2712 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-06-17 21:21:10 +00:00
parent 3435a0ff64
commit 954aba7430
1 changed files with 4 additions and 4 deletions

View File

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