aboutsummaryrefslogtreecommitdiff
path: root/text-motions.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-09 21:27:55 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-09 21:27:55 +0200
commit6d2e43b8142e17f4dd0a578a961b1d8cc98894bb (patch)
tree9137169b01606fa65721358daa093c85c37b9168 /text-motions.c
parent78e0601e4ee68177ef597e75d08da786b0cabd3d (diff)
downloadvis-6d2e43b8142e17f4dd0a578a961b1d8cc98894bb.tar.gz
vis-6d2e43b8142e17f4dd0a578a961b1d8cc98894bb.tar.xz
Remove trailing whitespaces (sed 's/[ \t]*$//')
Diffstat (limited to 'text-motions.c')
-rw-r--r--text-motions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text-motions.c b/text-motions.c
index 7696ff0..b2785d8 100644
--- a/text-motions.c
+++ b/text-motions.c
@@ -125,7 +125,7 @@ size_t text_word_boundry_start_prev(Text *txt, size_t pos, int (*isboundry)(int)
do pos = it.pos; while (text_iterator_char_prev(&it, &c) && !isboundry(c));
return pos;
}
-
+
size_t text_word_boundry_end_next(Text *txt, size_t pos, int (*isboundry)(int)) {
char c;
Iterator it = text_iterator_get(txt, pos);