diff options
author | Klemen Košir <klemen913@gmail.com> | 2014-04-30 11:06:52 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-08 17:25:48 +0000 |
commit | ef34a0ab132bca94bd16d8518c3333cf81cbf2c6 (patch) | |
tree | 9ae6122b7c3d941fdc237c51ef81f04e2bb737ac /src/nvim/term.c | |
parent | 3cf435af363dc3585568e1213152e31ed6b1fc08 (diff) | |
download | rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.gz rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.bz2 rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.zip |
Replace int with bool in some files. #654
Diffstat (limited to 'src/nvim/term.c')
-rw-r--r-- | src/nvim/term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/term.c b/src/nvim/term.c index 664d8d962b..ecbd9da8e6 100644 --- a/src/nvim/term.c +++ b/src/nvim/term.c @@ -1455,7 +1455,7 @@ int set_termname(char_u *term) if (emsg_silent == 0) { screen_start(); /* don't know where cursor is now */ out_flush(); - ui_delay(2000L, TRUE); + ui_delay(2000L, true); } set_string_option_direct((char_u *)"term", -1, term, OPT_FREE, 0); @@ -2608,7 +2608,7 @@ void stoptermcap(void) if (crv_status == CRV_SENT || u7_status == U7_SENT) { # ifdef UNIX /* Give the terminal a chance to respond. */ - os_delay(100L, FALSE); + os_delay(100L, false); # endif # ifdef TCIFLUSH /* Discard data received but not read. */ |