summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2021-10-20 09:50:40 +0000
committernicm <nicm>2021-10-20 09:50:40 +0000
commit8a9bfd0cddd783436e842495fc3039aa56571ed1 (patch)
tree664ad6f43dbfb7453bc43c3d300d9acfdd844f88 /tmux.h
parentf26b8c57ffb253db08072629b7c969c021580492 (diff)
Add -T to set a popup title, from Alexis Hildebrandt in GitHub issue 2941.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 65a3a571..fc4ad70d 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2737,7 +2737,7 @@ void screen_write_vline(struct screen_write_ctx *, u_int, int, int);
void screen_write_menu(struct screen_write_ctx *, struct menu *, int,
const struct grid_cell *);
void screen_write_box(struct screen_write_ctx *, u_int, u_int, int,
- const struct grid_cell *);
+ const struct grid_cell *, const char *);
void screen_write_preview(struct screen_write_ctx *, struct screen *, u_int,
u_int);
void screen_write_backspace(struct screen_write_ctx *);
@@ -3154,8 +3154,8 @@ typedef void (*popup_close_cb)(int, void *);
typedef void (*popup_finish_edit_cb)(char *, size_t, void *);
int popup_display(int, int, struct cmdq_item *, u_int, u_int,
u_int, u_int, struct environ *, const char *, int, char **,
- const char *, struct client *, struct session *,
- popup_close_cb, void *);
+ const char *, const char *, struct client *,
+ struct session *, popup_close_cb, void *);
int popup_editor(struct client *, const char *, size_t,
popup_finish_edit_cb, void *);