aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-04-20 15:37:32 +0000
committernicm <nicm>2020-04-20 15:37:32 +0000
commit117ec1b2e603c2692ab564947b099ec79a20150f (patch)
treecaa93040de57eecf5e92868674ed4eaaf6cd26b9 /tmux.h
parent2083a6ea2050fb211eab3da0df0ff5a40b4973b4 (diff)
downloadrtmux-117ec1b2e603c2692ab564947b099ec79a20150f.tar.gz
rtmux-117ec1b2e603c2692ab564947b099ec79a20150f.tar.bz2
rtmux-117ec1b2e603c2692ab564947b099ec79a20150f.zip
Apply terminal-overrides after terminal detection, it always takes
precedence.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 5d7dbba7..3fe32b50 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1997,6 +1997,7 @@ void tty_cmd_syncstart(struct tty *, const struct tty_ctx *);
extern struct tty_terms tty_terms;
u_int tty_term_ncodes(void);
void tty_term_apply(struct tty_term *, const char *, int);
+void tty_term_apply_overrides(struct tty_term *);
struct tty_term *tty_term_create(struct tty *, char *, int *, int, char **);
void tty_term_free(struct tty_term *);
int tty_term_has(struct tty_term *, enum tty_code_code);
@@ -2017,7 +2018,7 @@ const char *tty_term_describe(struct tty_term *, enum tty_code_code);
/* tty-features.c */
void tty_add_features(int *, const char *, const char *);
const char *tty_get_features(int);
-void tty_apply_features(struct tty_term *, int);
+int tty_apply_features(struct tty_term *, int);
/* tty-acs.c */
int tty_acs_needed(struct tty *);