From: David Lawrence Ramsey Date: Tue, 20 Sep 2005 16:36:08 +0000 (+0000) Subject: really fix the previous break_line() problem X-Git-Tag: v1.3.9~23 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bdc1b9b56824fbc1f31a772cf7c08a7927e86340;p=nano.git really fix the previous break_line() problem git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3023 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/text.c b/src/text.c index b151403a..264c8657 100644 --- a/src/text.c +++ b/src/text.c @@ -599,6 +599,7 @@ ssize_t break_line(const char *line, ssize_t goal, bool newline) if (blank_loc == -1) { /* No blank was found that was short enough. */ bool found_blank = FALSE; + ssize_t found_blank_loc; while (*line != '\0') { line_len = parse_mbchar(line, NULL, NULL); @@ -606,8 +607,9 @@ ssize_t break_line(const char *line, ssize_t goal, bool newline) if (is_blank_mbchar(line) || (newline && *line == '\n')) { if (!found_blank) found_blank = TRUE; + found_blank_loc = cur_loc; } else if (found_blank) - return move_mbleft(line, cur_loc); + return found_blank_loc; line += line_len; cur_loc += line_len;