mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -1396,7 +1396,7 @@ void ex_catch(exarg_T *eap)
|
||||
|
||||
int prev_got_int = got_int;
|
||||
got_int = false;
|
||||
caught = vim_regexec_nl(®match, current_exception->value, (colnr_T)0);
|
||||
caught = vim_regexec_nl(®match, current_exception->value, 0);
|
||||
got_int |= prev_got_int;
|
||||
vim_regfree(regmatch.regprog);
|
||||
}
|
||||
|
Reference in New Issue
Block a user