aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'window.c')
-rw-r--r--window.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/window.c b/window.c
index 7fea9d80..b28a2257 100644
--- a/window.c
+++ b/window.c
@@ -996,26 +996,6 @@ window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
}
void
-window_pane_alternate_on(struct window_pane *wp, struct grid_cell *gc,
- int cursor)
-{
- if (!options_get_number(wp->options, "alternate-screen"))
- return;
- screen_alternate_on(&wp->base, gc, cursor);
- wp->flags |= PANE_REDRAW;
-}
-
-void
-window_pane_alternate_off(struct window_pane *wp, struct grid_cell *gc,
- int cursor)
-{
- if (!options_get_number(wp->options, "alternate-screen"))
- return;
- screen_alternate_off(&wp->base, gc, cursor);
- wp->flags |= PANE_REDRAW;
-}
-
-void
window_pane_set_palette(struct window_pane *wp, u_int n, int colour)
{
if (n > 0xff)