]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 15 Jun 2005 19:26:48 +0000 (19:26 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 15 Jun 2005 19:26:48 +0000 (19:26 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2680 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index 222ee8f1615dc99798e527aedc6dd15e7da10bc4..d9bd8e2b552fc6a2e93be43b91049e1758775c6a 100644 (file)
@@ -1891,11 +1891,11 @@ bool do_wrap(filestruct *line)
     if (current_x > wrap_loc) {
        same_line_wrap = FALSE;
        current = current->next;
-       current_x -=
+       current_x -= wrap_loc
 #ifndef NANO_SMALL
-               -indent_len +
+               - indent_len
 #endif
-               wrap_loc;
+               ;
        placewewant = xplustabs();
     }