diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-06-09 12:01:09 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-06-09 12:01:09 +0100 |
commit | 810daefdd14d918e31d297a37c16de94d6fd641d (patch) | |
tree | 7601bc8443bfc5a03cd8e02c6f56058ee2943f80 /tmux.h | |
parent | be2eb57d6295a72b870841bbb85e65d624c5d87c (diff) | |
parent | ccc9dc3bb49ac258c856d8478346b4ce829b188e (diff) | |
download | rtmux-810daefdd14d918e31d297a37c16de94d6fd641d.tar.gz rtmux-810daefdd14d918e31d297a37c16de94d6fd641d.tar.bz2 rtmux-810daefdd14d918e31d297a37c16de94d6fd641d.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1422,6 +1422,7 @@ struct tty_ctx { u_int num; void *ptr; + void *ptr2; /* * Cursor and region position before the screen was updated - this is @@ -2279,7 +2280,7 @@ int tty_open(struct tty *, char **); void tty_close(struct tty *); void tty_free(struct tty *); void tty_update_features(struct tty *); -void tty_set_selection(struct tty *, const char *, size_t); +void tty_set_selection(struct tty *, const char *, const char *, size_t); void tty_write(void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *); void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *); @@ -2874,7 +2875,8 @@ void screen_write_collect_end(struct screen_write_ctx *); void screen_write_collect_add(struct screen_write_ctx *, const struct grid_cell *); void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *); -void screen_write_setselection(struct screen_write_ctx *, u_char *, u_int); +void screen_write_setselection(struct screen_write_ctx *, const char *, + u_char *, u_int); void screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int); void screen_write_alternateon(struct screen_write_ctx *, struct grid_cell *, int); |