mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -237,7 +237,7 @@ void may_trigger_modechanged(void)
|
||||
char pattern_buf[2 * MODE_MAX_LENGTH];
|
||||
|
||||
get_mode(curr_mode);
|
||||
if (STRCMP(curr_mode, last_mode) == 0) {
|
||||
if (strcmp(curr_mode, last_mode) == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user