vim-patch:8.1.2378: using old C style comments

Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
5d18efecfd
This commit is contained in:
Jan Edmund Lazo
2020-03-22 09:51:46 -04:00
parent 2ec6fec20b
commit 73dc9e943c
10 changed files with 1056 additions and 974 deletions

View File

@@ -6105,9 +6105,10 @@ void check_for_delay(int check_msg_scroll)
&& emsg_silent == 0) {
ui_flush();
os_delay(1000L, true);
emsg_on_display = FALSE;
if (check_msg_scroll)
msg_scroll = FALSE;
emsg_on_display = false;
if (check_msg_scroll) {
msg_scroll = false;
}
}
}