mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -4692,7 +4692,7 @@ char *skip_vimgrep_pat(char *p, char **s, int *flags)
|
||||
{
|
||||
int c;
|
||||
|
||||
if (vim_isIDc(*p)) {
|
||||
if (vim_isIDc((uint8_t)(*p))) {
|
||||
// ":vimgrep pattern fname"
|
||||
if (s != NULL) {
|
||||
*s = p;
|
||||
|
Reference in New Issue
Block a user