]> git.wh0rd.org Git - nano.git/commitdiff
Eliding two variables.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 2 Nov 2015 11:24:22 +0000 (11:24 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 2 Nov 2015 11:24:22 +0000 (11:24 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5389 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 1eff2b41c0373eaef84cedf79f17629e70eb3daa..b17987da30d3e00c880a3e32c6a5c53981c3e78b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2015-11-02  Benno Schulenberg  <bensberg@justemail.net>
        * src/nano.h: Delete an unused type definition.
        * src/nano.h: Improve several comments.
+       * src_text.c(do_wrap): Elide two variables.
 
 2015-10-31  Benno Schulenberg  <bensberg@justemail.net>
        * src/nano.c (copy_from_filestruct): When pasting while the mark is
index 5c1c851857c635e25d07ef0fc2b500b2fd37e17e..4d1a326677f1589aab045cdc02de39f21012f3fc 100644 (file)
@@ -1190,12 +1190,6 @@ bool do_wrap(filestruct *line)
        /* The length of the line we wrap. */
     ssize_t wrap_loc;
        /* The index of line->data where we wrap. */
-#ifndef NANO_TINY
-    const char *indent_string = NULL;
-       /* Indentation to prepend to the new line. */
-    size_t indent_len = 0;
-       /* The length of indent_string. */
-#endif
     const char *after_break;
        /* The text after the wrap point. */
     size_t after_break_len;
@@ -1245,14 +1239,8 @@ bool do_wrap(filestruct *line)
 #ifndef NANO_TINY
     /* If autoindent is turned on, and we're on the character just after
      * the indentation, we don't wrap. */
-    if (ISSET(AUTOINDENT)) {
-       /* Get the indentation of this line. */
-       indent_string = line->data;
-       indent_len = indent_length(indent_string);
-
-       if (wrap_loc == indent_len)
-           return FALSE;
-    }
+    if (ISSET(AUTOINDENT) && wrap_loc == indent_length(line->data))
+       return FALSE;
 
     add_undo(SPLIT_BEGIN);
 #endif