Remove RealWaitForChar and mch_new_shellsize

The last occurrence of `RealWaitForChar` was replaced by the `os_microdelay`
function. `mch_new_shellsize` had an empty body, so there seems to be no reason
for keeping it around
This commit is contained in:
Thiago de Arruda
2014-04-05 11:54:00 -03:00
parent f8970e1c7c
commit dfb7d826ac
5 changed files with 2 additions and 151 deletions

View File

@@ -237,24 +237,11 @@ int ui_get_shellsize(void)
* new size. If this is not possible, it will adjust Rows and Columns.
*/
void
ui_set_shellsize (
int mustset /* set by the user */
)
ui_set_shellsize(int mustset)
{
mch_set_shellsize();
}
/*
* Called when Rows and/or Columns changed. Adjust scroll region and mouse
* region.
*/
void ui_new_shellsize(void)
{
if (full_screen && !exiting) {
mch_new_shellsize();
}
}
void ui_breakcheck(void)
{
os_breakcheck();