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
-16
View File
@@ -146,8 +146,6 @@ struct window_procs X11_procs = {
#ifdef CHANGE_COLOR /* only a Mac option currently */
donull, donull,
#endif
/* other defs that really should go away (they're tty specific) */
X11_start_screen, X11_end_screen,
#ifdef GRAPHIC_TOMBSTONE
X11_outrip,
#else
@@ -1396,20 +1394,6 @@ X11_number_pad(int state) /* called from options.c */
return;
}
/* called from setftty() in unixtty.c */
void
X11_start_screen(void)
{
return;
}
/* called from settty() in unixtty.c */
void
X11_end_screen(void)
{
return;
}
#ifdef GRAPHIC_TOMBSTONE
void
X11_outrip(winid window, int how, time_t when)