diff options
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index add650e7a9..18df6b7e76 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -417,11 +417,11 @@ void remove_bom(char *s) } } -// Get class of pointer: -// 0 for blank or NUL -// 1 for punctuation -// 2 for an (ASCII) word character -// >2 for other word characters +/// Get class of pointer: +/// 0 for blank or NUL +/// 1 for punctuation +/// 2 for an alphanumeric word character +/// >2 for other word characters, including CJK and emoji int mb_get_class(const char *p) FUNC_ATTR_PURE { |