mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
Merge pull request #20022 from dundargoc/refactor/char_u/6
refactor: replace char_u with char 6
This commit is contained in:
@@ -568,7 +568,7 @@ void ui_check_mouse(void)
|
||||
// - 'a' is in 'mouse' and "c" is in MOUSE_A, or
|
||||
// - the current buffer is a help file and 'h' is in 'mouse' and we are in a
|
||||
// normal editing mode (not at hit-return message).
|
||||
for (char_u *p = (char_u *)p_mouse; *p; p++) {
|
||||
for (char *p = p_mouse; *p; p++) {
|
||||
switch (*p) {
|
||||
case 'a':
|
||||
if (vim_strchr(MOUSE_A, checkfor) != NULL) {
|
||||
|
Reference in New Issue
Block a user