mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48:19 +00:00
refactor: convert macros to all-caps (#17895)
Closes https://github.com/neovim/neovim/issues/6297
This commit is contained in:
@@ -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.
|
||||
|
Reference in New Issue
Block a user