mirror of
https://github.com/neovim/neovim.git
synced 2025-10-13 13:26:06 +00:00
refactor: follow style guide
This commit is contained in:
@@ -378,7 +378,7 @@ void ex_let(exarg_T *eap)
|
||||
if (!eap->skip) {
|
||||
op[0] = '=';
|
||||
op[1] = NUL;
|
||||
(void)ex_let_vars(eap->arg, &rettv, false, semicolon, var_count, is_const, op);
|
||||
ex_let_vars(eap->arg, &rettv, false, semicolon, var_count, is_const, op);
|
||||
}
|
||||
tv_clear(&rettv);
|
||||
}
|
||||
@@ -415,7 +415,7 @@ void ex_let(exarg_T *eap)
|
||||
clear_evalarg(&evalarg, eap);
|
||||
|
||||
if (!eap->skip && eval_res != FAIL) {
|
||||
(void)ex_let_vars(eap->arg, &rettv, false, semicolon, var_count, is_const, op);
|
||||
ex_let_vars(eap->arg, &rettv, false, semicolon, var_count, is_const, op);
|
||||
}
|
||||
if (eval_res != FAIL) {
|
||||
tv_clear(&rettv);
|
||||
@@ -1303,7 +1303,7 @@ void vars_clear(hashtab_T *ht)
|
||||
}
|
||||
|
||||
/// Like vars_clear(), but only free the value if "free_val" is true.
|
||||
void vars_clear_ext(hashtab_T *ht, int free_val)
|
||||
void vars_clear_ext(hashtab_T *ht, bool free_val)
|
||||
{
|
||||
int todo;
|
||||
hashitem_T *hi;
|
||||
|
Reference in New Issue
Block a user