From 4019cf90b8657d4ab1c39744db63550f44f405a2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 28 Jan 2017 16:39:34 +0100 Subject: patch 8.0.0252: not properly recognizing word characters between 128 and 255 Problem: Characters below 256 that are not one byte are not always recognized as word characters. Solution: Make vim_iswordc() and vim_iswordp() work the same way. Add a test for this. (Ozaki Kiichi) --- src/proto/mbyte.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'src/proto') diff --git a/src/proto/mbyte.pro b/src/proto/mbyte.pro index 806a6c698..83bcadc69 100644 --- a/src/proto/mbyte.pro +++ b/src/proto/mbyte.pro @@ -40,6 +40,7 @@ int utf_char2bytes(int c, char_u *buf); int utf_iscomposing(int c); int utf_printable(int c); int utf_class(int c); +int utf_class_buf(int c, buf_T *buf); int utf_ambiguous_width(int c); int utf_fold(int a); int utf_toupper(int a); -- cgit v1.2.1