]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 25 Feb 2005 20:21:45 +0000 (20:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 25 Feb 2005 20:21:45 +0000 (20:21 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2328 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c

index c490a3aa3f1c0b2cd1edf1d36d1a49b217e30d05..7c4a013518ab450607ed2371872de97e117658c9 100644 (file)
@@ -2951,7 +2951,9 @@ void do_justify(bool full_justify)
                     * just go on to the next. */
                    goto continue_loc;
                break_pos += indent_len;
+
                assert(break_pos < line_len);
+
                if (par_len == 1) {
                    /* There is no next line in this paragraph.  We make
                     * a new line and copy text after break_pos into
@@ -3070,8 +3072,8 @@ void do_justify(bool full_justify)
                    charmove(current->next->data + indent_len,
                        current->next->data + indent_len + break_pos + 1,
                        next_line_len - break_pos - indent_len);
-                   null_at(&current->next->data, next_line_len -
-                       break_pos);
+                   null_at(&current->next->data,
+                       next_line_len - break_pos);
 
                    /* Go to the next line. */
                    current = current->next;