aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2021-11-01 12:01:12 +0000
committerThomas Adam <thomas@xteddy.org>2021-11-01 12:01:12 +0000
commit7d330c19e822c09164264eebfddad32bb1194a6d (patch)
tree4e809926ec83e0e4654cad90664a5b325ef01ab0 /tmux.h
parent774903f6c4b1c1ae44517af43a7d70d80eb7d805 (diff)
parent8d2286b76917debc4f6c3b0903ad2807ae254bb5 (diff)
downloadrtmux-7d330c19e822c09164264eebfddad32bb1194a6d.tar.gz
rtmux-7d330c19e822c09164264eebfddad32bb1194a6d.tar.bz2
rtmux-7d330c19e822c09164264eebfddad32bb1194a6d.zip
Merge branch 'obsd-master' into master
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 92c6b376..83add736 100644
--- a/tmux.h
+++ b/tmux.h
@@ -780,7 +780,8 @@ struct screen {
u_int cy; /* cursor y */
enum screen_cursor_style cstyle; /* cursor style */
- char *ccolour; /* cursor colour */
+ int ccolour; /* cursor colour */
+ int default_ccolour;
u_int rupper; /* scroll region top */
u_int rlower; /* scroll region bottom */
@@ -1277,7 +1278,7 @@ struct tty {
u_int cx;
u_int cy;
enum screen_cursor_style cstyle;
- char *ccolour;
+ int ccolour;
int oflag;
u_int oox;
@@ -2794,7 +2795,7 @@ void screen_reinit(struct screen *);
void screen_free(struct screen *);
void screen_reset_tabs(struct screen *);
void screen_set_cursor_style(struct screen *, u_int);
-void screen_set_cursor_colour(struct screen *, const char *);
+void screen_set_cursor_colour(struct screen *, int);
int screen_set_title(struct screen *, const char *);
void screen_set_path(struct screen *, const char *);
void screen_push_title(struct screen *);