summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-06-27 17:02:26 +0100
committerThomas Adam <thomas@xteddy.org>2019-06-27 17:02:26 +0100
commite483ce138fbae32491df7e2dea23690e5aca3894 (patch)
tree3970a77700f70ebe177fd3ab3733f5d14da79fe9 /tmux.h
parentc4a92999563e20617f949ac781f1465843fb088c (diff)
parentdae2868d1227b95fd076fb4a5efa6256c7245943 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 95fa4f93..d34dcaea 100644
--- a/tmux.h
+++ b/tmux.h
@@ -429,6 +429,7 @@ enum tty_code_code {
TTYC_SETAF,
TTYC_SETRGBB,
TTYC_SETRGBF,
+ TTYC_SETULC,
TTYC_SGR0,
TTYC_SITM,
TTYC_SMACS,
@@ -601,6 +602,7 @@ struct grid_cell {
u_short attr;
int fg;
int bg;
+ int us;
struct utf8_data data;
};
struct grid_cell_entry {
@@ -2196,7 +2198,8 @@ int colour_join_rgb(u_char, u_char, u_char);
void colour_split_rgb(int, u_char *, u_char *, u_char *);
const char *colour_tostring(int);
int colour_fromstring(const char *s);
-u_char colour_256to16(u_char);
+int colour_256toRGB(int);
+int colour_256to16(int);
/* attributes.c */
const char *attributes_tostring(int);