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 3dbd4c5..8462fff 100644 --- a/text-motions.c +++ b/text-motions.c @@ -19,7 +19,7 @@ #include "util.h" // TODO: specify this per file type? -static int is_word_boundry(int c) { +int is_word_boundry(int c) { return ISASCII(c) && !(('0' <= c && c <= '9') || ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z')); |
