From f415a70c0be40fd6f8ae7b26523a92f8f3b6ca88 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 10 Jun 2026 14:17:10 +0100 Subject: [PATCH] Merge two SIXEL blocks. --- tmux.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tmux.h b/tmux.h index 9f979c1c..998afe01 100644 --- a/tmux.h +++ b/tmux.h @@ -2673,10 +2673,6 @@ struct environ *environ_for_session(struct session *, int); void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int, u_int, u_int, const struct tty_style_ctx *); -#ifdef ENABLE_SIXEL -void tty_draw_images(struct client *, struct window_pane *, struct screen *); -#endif - /* tty.c */ void tty_create_log(void); int tty_window_bigger(struct tty *); @@ -2754,6 +2750,7 @@ void tty_cmd_setselection(struct tty *, const struct tty_ctx *); void tty_cmd_rawstring(struct tty *, const struct tty_ctx *); #ifdef ENABLE_SIXEL void tty_cmd_sixelimage(struct tty *, const struct tty_ctx *); +void tty_draw_images(struct client *, struct window_pane *, struct screen *); #endif void tty_cmd_syncstart(struct tty *, const struct tty_ctx *); void tty_default_colours(struct grid_cell *, struct window_pane *);