diff --git a/ChangeLog b/ChangeLog
index ed3748ead6f6af52217ac228654cac3777018892..f7e4efa68cf61fee59a2ad6ded626973dc347368 100644
--- 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
diff --git a/src/text.c b/src/text.c
index 34d66a6e1b90816732bfc96bcf38d386a3deedc7..8bff24a2a52c6edcf39eaea6978f45300f769517 100644
--- a/src/text.c
+++ b/src/text.c
@@ -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;