mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 15:28:17 +00:00
Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645
This commit is contained in:

committed by
Justin M. Keyes

parent
ef34a0ab13
commit
a568e8b644
@@ -3415,7 +3415,7 @@ static int ins_compl_get_exp(pos_T *ini)
|
||||
pos_T *pos;
|
||||
char_u **matches;
|
||||
int save_p_scs;
|
||||
int save_p_ws;
|
||||
bool save_p_ws;
|
||||
int save_p_ic;
|
||||
int i;
|
||||
int num_matches;
|
||||
@@ -3613,9 +3613,9 @@ static int ins_compl_get_exp(pos_T *ini)
|
||||
* wrapscan for curbuf to avoid missing matches -- Acevedo,Webb */
|
||||
save_p_ws = p_ws;
|
||||
if (ins_buf != curbuf)
|
||||
p_ws = FALSE;
|
||||
p_ws = false;
|
||||
else if (*e_cpt == '.')
|
||||
p_ws = TRUE;
|
||||
p_ws = true;
|
||||
for (;; ) {
|
||||
int flags = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user