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/tag.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/tag.c')
-rw-r--r-- | src/nvim/tag.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 141c5ee98b..8d229caf1b 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2325,7 +2325,8 @@ jumpto_tag ( { int save_secure; int save_magic; - int save_p_ws, save_p_scs, save_p_ic; + bool save_p_ws; + int save_p_scs, save_p_ic; linenr_T save_lnum; int csave = 0; char_u *str; @@ -2476,7 +2477,7 @@ jumpto_tag ( save_p_ws = p_ws; save_p_ic = p_ic; save_p_scs = p_scs; - p_ws = TRUE; /* need 'wrapscan' for backward searches */ + p_ws = true; /* need 'wrapscan' for backward searches */ p_ic = FALSE; /* don't ignore case now */ p_scs = FALSE; save_lnum = curwin->w_cursor.lnum; |