diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-04-21 08:06:55 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-04-21 11:05:45 +0200 |
| commit | aca46a0da8969f15d9356c149687f961b6852516 (patch) | |
| tree | ffc96967c3110d9a684fec302973845e7de2b23d /text-motions.h | |
| parent | 1b1590ed4f33f3da16ff648c7e0f1a45db6811dd (diff) | |
| download | vis-aca46a0da8969f15d9356c149687f961b6852516.tar.gz vis-aca46a0da8969f15d9356c149687f961b6852516.tar.xz | |
Clean up to/till movements
Diffstat (limited to 'text-motions.h')
| -rw-r--r-- | text-motions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/text-motions.h b/text-motions.h index e2dc064..64f68bf 100644 --- a/text-motions.h +++ b/text-motions.h @@ -18,8 +18,8 @@ size_t text_char_prev(Text*, size_t pos); /* find the given substring either in forward or backward direction. * does not wrap around at file start / end. if no match is found return * original position */ -size_t text_find_char_next(Text*, size_t pos, const char *s, size_t len); -size_t text_find_char_prev(Text*, size_t pos, const char *s, size_t len); +size_t text_find_next(Text*, size_t pos, const char *s); +size_t text_find_prev(Text*, size_t pos, const char *s); /* begin finish end next * v v v v |
