diff options
author | Klemen Košir <klemen913@gmail.com> | 2014-04-29 10:52:10 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-08 17:34:08 +0000 |
commit | a568e8b644a41b12388b7c7de4ca0fb8dc107f18 (patch) | |
tree | ceda29fd66a672eaa0cc68bcacc6c7ae66bbb44b /src/nvim/edit.c | |
parent | ef34a0ab132bca94bd16d8518c3333cf81cbf2c6 (diff) | |
download | rneovim-a568e8b644a41b12388b7c7de4ca0fb8dc107f18.tar.gz rneovim-a568e8b644a41b12388b7c7de4ca0fb8dc107f18.tar.bz2 rneovim-a568e8b644a41b12388b7c7de4ca0fb8dc107f18.zip |
Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index f1914a09dd..a70982150c 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -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; |