]> git.wh0rd.org Git - nano.git/commitdiff
Removing a condition and a break that cancel each other.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 18 Jun 2014 21:23:50 +0000 (21:23 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 18 Jun 2014 21:23:50 +0000 (21:23 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4984 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index ed3748ead6f6af52217ac228654cac3777018892..f7e4efa68cf61fee59a2ad6ded626973dc347368 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
        * src/text.c: And elide a totally unused 'strdata2'.
        * src/text.c: Rename the undo type UNSPLIT to JOIN, for clarity.
        * src/global.c, src/rcfile.c: Rename function_type to key_type.
+       * src/text.c (break_line): Remove a condition and a break that
+       cancel each other.
 
 2014-06-18  Mark Majeres  <mark@engine12.com>
        * src/text.c (add_undo): Don't start a new undo for CUT when the
index 34d66a6e1b90816732bfc96bcf38d386a3deedc7..8bff24a2a52c6edcf39eaea6978f45300f769517 100644 (file)
@@ -1101,9 +1101,7 @@ void update_undo(undo_type action)
 #ifdef DEBUG
     fprintf(stderr, "Done in update_undo (type was %d)\n", action);
 #endif
-
-    }
-
+}
 #endif /* !NANO_TINY */
 
 #ifndef DISABLE_WRAPPING
@@ -1354,16 +1352,7 @@ ssize_t break_line(const char *line, ssize_t goal
     char_len = parse_mbchar(line, NULL, NULL);
     line += char_len;
 
-    while (*line != '\0' && (is_blank_mbchar(line)
-#ifndef DISABLE_HELP
-       || (newln && *line == '\n')
-#endif
-       )) {
-#ifndef DISABLE_HELP
-       if (newln && *line == '\n')
-           break;
-#endif
-
+    while (*line != '\0' && is_blank_mbchar(line)) {
        char_len = parse_mbchar(line, NULL, NULL);
 
        line += char_len;