diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-07-06 10:01:10 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-07-06 10:01:10 +0100 |
commit | b130e951cc3157ef4deeadc25cc668b8e355f234 (patch) | |
tree | a0e44afc634668186123f03e891a37b531fa19a5 /tmux.h | |
parent | 9e19f132f2963d603a881d8e35411348638e5fc0 (diff) | |
parent | d0d2c39decd1c342f2ffdb360e5d6b509b9bb34e (diff) | |
download | rtmux-b130e951cc3157ef4deeadc25cc668b8e355f234.tar.gz rtmux-b130e951cc3157ef4deeadc25cc668b8e355f234.tar.bz2 rtmux-b130e951cc3157ef4deeadc25cc668b8e355f234.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2127,6 +2127,8 @@ void format_defaults_paste_buffer(struct format_tree *, struct paste_buffer *); void format_lost_client(struct client *); char *format_grid_word(struct grid *, u_int, u_int); +char *format_grid_hyperlink(struct grid *, u_int, u_int, + struct screen *); char *format_grid_line(struct grid *, u_int); /* format-draw.c */ @@ -2774,7 +2776,7 @@ void grid_clear_lines(struct grid *, u_int, u_int, u_int); void grid_move_lines(struct grid *, u_int, u_int, u_int, u_int); void grid_move_cells(struct grid *, u_int, u_int, u_int, u_int, u_int); char *grid_string_cells(struct grid *, u_int, u_int, u_int, - struct grid_cell **, int, int, int); + struct grid_cell **, int, int, int, struct screen *); void grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int, u_int); void grid_reflow(struct grid *, u_int); @@ -3315,7 +3317,7 @@ uid_t server_acl_get_uid(struct server_acl_user *); u_int hyperlinks_put(struct hyperlinks *, const char *, const char *); int hyperlinks_get(struct hyperlinks *, u_int, - const char **, const char **); + const char **, const char **, const char **); struct hyperlinks *hyperlinks_init(void); void hyperlinks_reset(struct hyperlinks *); void hyperlinks_free(struct hyperlinks *); |