diff options
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 0ceb66f438..76bb5a0186 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -5376,7 +5376,7 @@ static int get_id_list(char_u **const arg, const int keylen, int16_t **const lis /* * Handle full group name. */ - if (vim_strpbrk(name + 1, (char_u *)"\\.*^$~[") == NULL) { + if (strpbrk((char *)name + 1, "\\.*^$~[") == NULL) { id = syn_check_group((char *)(name + 1), (int)(end - p)); } else { // Handle match of regexp with group names. |