aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorKlemen Košir <klemen913@gmail.com>2014-04-30 11:06:52 +0200
committerJustin M. Keyes <justinkz@gmail.com>2014-07-08 17:25:48 +0000
commitef34a0ab132bca94bd16d8518c3333cf81cbf2c6 (patch)
tree9ae6122b7c3d941fdc237c51ef81f04e2bb737ac /src/nvim/tag.c
parent3cf435af363dc3585568e1213152e31ed6b1fc08 (diff)
downloadrneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.gz
rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.bz2
rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.zip
Replace int with bool in some files. #654
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 8c873283f0..141c5ee98b 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -876,7 +876,7 @@ do_tag (
give_warning(IObuff, ic);
if (ic && !msg_scrolled && msg_silent == 0) {
out_flush();
- ui_delay(1000L, TRUE);
+ ui_delay(1000L, true);
}
}
@@ -2414,7 +2414,7 @@ jumpto_tag (
* Make the preview window the current window.
* Open a preview window when needed.
*/
- prepare_tagpreview(TRUE);
+ prepare_tagpreview(true);
}
}
@@ -2525,7 +2525,7 @@ jumpto_tag (
MSG(_("E435: Couldn't find tag, just guessing!"));
if (!msg_scrolled && msg_silent == 0) {
out_flush();
- ui_delay(1000L, TRUE);
+ ui_delay(1000L, true);
}
}
retval = OK;
@@ -2580,7 +2580,7 @@ jumpto_tag (
/* Return cursor to where we were */
validate_cursor();
redraw_later(VALID);
- win_enter(curwin_save, TRUE);
+ win_enter(curwin_save, true);
}
--RedrawingDisabled;