mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00
refactor: use bool
to represent boolean values
This commit is contained in:
@@ -586,7 +586,7 @@ int current_word(oparg_T *oap, int count, bool include, bool bigword)
|
||||
{
|
||||
pos_T start_pos;
|
||||
bool inclusive = true;
|
||||
int include_white = false;
|
||||
bool include_white = false;
|
||||
|
||||
cls_bigword = bigword;
|
||||
clearpos(&start_pos);
|
||||
@@ -1079,7 +1079,7 @@ int current_tagblock(oparg_T *oap, int count_arg, bool include)
|
||||
bool do_include = include;
|
||||
bool save_p_ws = p_ws;
|
||||
int retval = FAIL;
|
||||
int is_inclusive = true;
|
||||
bool is_inclusive = true;
|
||||
|
||||
p_ws = false;
|
||||
|
||||
|
Reference in New Issue
Block a user