From a568e8b644a41b12388b7c7de4ca0fb8dc107f18 Mon Sep 17 00:00:00 2001 From: Klemen Košir Date: Tue, 29 Apr 2014 10:52:10 +0200 Subject: Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645 --- src/nvim/normal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/normal.c') diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 291ae29793..25b56c4d84 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -3273,7 +3273,7 @@ find_decl ( pos_T par_pos; pos_T found_pos; int t; - int save_p_ws; + bool save_p_ws; int save_p_scs; int retval = OK; int incll; @@ -3287,7 +3287,7 @@ find_decl ( old_pos = curwin->w_cursor; save_p_ws = p_ws; save_p_scs = p_scs; - p_ws = FALSE; /* don't wrap around end of file now */ + p_ws = false; /* don't wrap around end of file now */ p_scs = FALSE; /* don't switch ignorecase off now */ /* -- cgit