mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 13:58:18 +00:00
linter: make changes pass the linter
This commit is contained in:
@@ -3862,14 +3862,14 @@ fex_format (
|
||||
if (fex == NULL) {
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* Evaluate the function.
|
||||
*/
|
||||
if (use_sandbox)
|
||||
++sandbox;
|
||||
// Evaluate the function.
|
||||
if (use_sandbox) {
|
||||
sandbox++;
|
||||
}
|
||||
r = (int)eval_to_number(fex);
|
||||
if (use_sandbox)
|
||||
--sandbox;
|
||||
if (use_sandbox) {
|
||||
sandbox--;
|
||||
}
|
||||
|
||||
set_vim_var_string(VV_CHAR, NULL, -1);
|
||||
xfree(fex);
|
||||
|
Reference in New Issue
Block a user