mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
Replace int with bool in some files. #654
This commit is contained in:

committed by
Justin M. Keyes

parent
3cf435af36
commit
ef34a0ab13
@@ -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. */
|
||||
|
Reference in New Issue
Block a user