window-port updates

Remove start_screen() and end_screen() from the
Window-port interface.

They were only ever used by tty, and there was a comment
carried to several window-ports about how they "really
should go away. They are tty-specific"

term_start_screen() and term_end_screen() are part of
terminal/NO_TERMS supporting routines now.
This commit is contained in:
nhmall
2025-01-04 23:38:34 -05:00
parent 63dfb84d00
commit be5143bb74
42 changed files with 59 additions and 334 deletions

View File

@@ -471,7 +471,7 @@ tty_delay_output(void)
}
void
tty_end_screen(void)
term_end_screen(void)
{
if (!iflags.grmode) {
txt_clear_screen();
@@ -480,11 +480,11 @@ tty_end_screen(void)
#endif
#ifdef SCREEN_VGA
} else if (iflags.usevga) {
vga_tty_end_screen();
vga_term_end_screen();
#endif
#ifdef SCREEN_VESA
} else if (iflags.usevesa) {
vesa_tty_end_screen();
vesa_term_end_screen();
#endif
}
}
@@ -546,7 +546,7 @@ term_startup(int *wid, int *hgt)
}
void
tty_start_screen(void)
term_start_screen(void)
{
#ifdef PC9800
fputs("\033[>1h", stdout);