From b8e0004ff23784c2988e0bb080ff7c592ec8fb84 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 22 May 2026 18:33:04 +0100 Subject: [PATCH] Fix missing arguments. --- screen-write.c | 2 +- tmux.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/screen-write.c b/screen-write.c index 6c24c27b..f166e5d8 100644 --- a/screen-write.c +++ b/screen-write.c @@ -2498,7 +2498,7 @@ screen_write_sixelimage(struct screen_write_ctx *ctx, struct sixel_image *si, } screen_write_collect_flush(ctx, 0, __func__); - screen_write_initctx(ctx, &ttyctx, 0); + screen_write_initctx(ctx, &ttyctx, 0, 0); ttyctx.image = image_store(s, si); tty_write(tty_cmd_sixelimage, &ttyctx); diff --git a/tmux.h b/tmux.h index 8e999942..db772fea 100644 --- a/tmux.h +++ b/tmux.h @@ -2739,11 +2739,9 @@ void tty_cmd_scrolldown(struct tty *, const struct tty_ctx *); void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); 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 *); #endif - void tty_cmd_syncstart(struct tty *, const struct tty_ctx *); void tty_default_colours(struct grid_cell *, struct window_pane *);