mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -2284,7 +2284,7 @@ bool message_filtered(const char *msg)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool match = vim_regexec(&cmdmod.cmod_filter_regmatch, msg, (colnr_T)0);
|
||||
bool match = vim_regexec(&cmdmod.cmod_filter_regmatch, msg, 0);
|
||||
return cmdmod.cmod_filter_force ? match : !match;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user