diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-04-12 10:00:47 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-04-12 10:00:47 +0200 |
| commit | 3939baaac101cea08c711638dfd537f4a039d0ae (patch) | |
| tree | 93b2a73faae588cbe4f2fdda38e20c99ce94d71e /text-objects.c | |
| parent | f58a3d82fca1a3fb44d43f2ffba68b4445947c02 (diff) | |
| parent | 4b4529f3cb885ad6427b0c5173c4054b844c6202 (diff) | |
| download | vis-3939baaac101cea08c711638dfd537f4a039d0ae.tar.gz vis-3939baaac101cea08c711638dfd537f4a039d0ae.tar.xz | |
Merge branch 'fixups' of https://github.com/tycho/vis
Diffstat (limited to 'text-objects.c')
| -rw-r--r-- | text-objects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/text-objects.c b/text-objects.c index 82fa36f..d7e806f 100644 --- a/text-objects.c +++ b/text-objects.c @@ -66,7 +66,7 @@ static Filerange text_object_customword(Text *txt, size_t pos, int (*isboundary) } Filerange text_object_word(Text *txt, size_t pos) { - return text_object_customword(txt, pos, is_word_boundry); + return text_object_customword(txt, pos, is_word_boundary); } Filerange text_object_longword(Text *txt, size_t pos) { @@ -117,7 +117,7 @@ Filerange text_object_longword_outer(Text *txt, size_t pos) { } Filerange text_object_word_outer(Text *txt, size_t pos) { - return text_object_customword_outer(txt, pos, is_word_boundry); + return text_object_customword_outer(txt, pos, is_word_boundary); } Filerange text_object_word_find_next(Text *txt, size_t pos, const char *word) { |
