aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/normal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r--src/nvim/normal.c4
1 files changed, 2 insertions, 2 deletions
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 */
/*