diff options
Diffstat (limited to 'text-motions.c')
| -rw-r--r-- | text-motions.c | 2 |
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); |
