mirror of
https://github.com/tmux/tmux.git
synced 2026-05-30 14:16:18 +00:00
Fix missing arguments.
This commit is contained in:
@@ -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_collect_flush(ctx, 0, __func__);
|
||||||
|
|
||||||
screen_write_initctx(ctx, &ttyctx, 0);
|
screen_write_initctx(ctx, &ttyctx, 0, 0);
|
||||||
ttyctx.image = image_store(s, si);
|
ttyctx.image = image_store(s, si);
|
||||||
|
|
||||||
tty_write(tty_cmd_sixelimage, &ttyctx);
|
tty_write(tty_cmd_sixelimage, &ttyctx);
|
||||||
|
|||||||
2
tmux.h
2
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_reverseindex(struct tty *, const struct tty_ctx *);
|
||||||
void tty_cmd_setselection(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 *);
|
void tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
|
||||||
|
|
||||||
#ifdef ENABLE_SIXEL
|
#ifdef ENABLE_SIXEL
|
||||||
void tty_cmd_sixelimage(struct tty *, const struct tty_ctx *);
|
void tty_cmd_sixelimage(struct tty *, const struct tty_ctx *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void tty_cmd_syncstart(struct tty *, const struct tty_ctx *);
|
void tty_cmd_syncstart(struct tty *, const struct tty_ctx *);
|
||||||
void tty_default_colours(struct grid_cell *, struct window_pane *);
|
void tty_default_colours(struct grid_cell *, struct window_pane *);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user