]> git.wh0rd.org Git - nano.git/commitdiff
formatting fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 17 Jun 2005 21:21:10 +0000 (21:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 17 Jun 2005 21:21:10 +0000 (21:21 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2712 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index 232cbf203b079ade06a4cd0d1f4456a9a1737a27..6ac8d3bd75c38a4a23dffe18f0be2f6c3960aeea 100644 (file)
@@ -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;
     }