aboutsummaryrefslogtreecommitdiff
path: root/text-motions.c
diff options
context:
space:
mode:
Diffstat (limited to 'text-motions.c')
-rw-r--r--text-motions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text-motions.c b/text-motions.c
index b215ffc..69afcc7 100644
--- a/text-motions.c
+++ b/text-motions.c
@@ -119,7 +119,9 @@ size_t text_line_start(Text *txt, size_t pos) {
size_t text_line_finish(Text *txt, size_t pos) {
char c;
Iterator it = text_iterator_get(txt, text_line_end(txt, pos));
+ do text_iterator_byte_prev(&it, NULL);
while (text_iterator_byte_get(&it, &c) && c != '\n' && isspace(c));
+ if (!ISUTF8(c))
text_iterator_char_prev(&it, NULL);
return it.pos;
}
@@ -129,8 +131,6 @@ size_t text_line_end(Text *txt, size_t pos) {
Iterator it = text_iterator_get(txt, pos);
while (text_iterator_byte_get(&it, &c) && c != '\r' && c != '\n')
text_iterator_byte_next(&it, NULL);
- if (text_iterator_char_prev(&it, &c) && c == '\n')
- text_iterator_byte_next(&it, NULL);
return it.pos;
}