diff options
-rw-r--r-- | src/spell.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index 206e7609a..dda81d9d5 100644 --- a/src/spell.c +++ b/src/spell.c @@ -3077,7 +3077,7 @@ spell_mb_isword_class(int cl, win_T *wp) if (wp->w_s->b_cjk) /* East Asian characters are not considered word characters. */ return cl == 2 || cl == 0x2800; - return cl >= 2 && cl != 0x2070 && cl != 0x2080; + return cl >= 2 && cl != 0x2070 && cl != 0x2080 && cl != 3; } /* diff --git a/src/version.c b/src/version.c index 64a6daa80..af9caa464 100644 --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1715, +/**/ 1714, /**/ 1713, |