commit bdc1b9b56824fbc1f31a772cf7c08a7927e86340
parent cd9a5f03770761d89323b262854a9dbd7e9b8457
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 20 Sep 2005 16:36:08 +0000
really fix the previous break_line() problem
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3023 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git 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;