diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-04-20 17:43:20 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-04-20 17:43:20 +0100 |
commit | 32c3fe40ebbc35285c2b0121dfb3dc5623f9fb73 (patch) | |
tree | ff0738166252ad1638a1e5351e1c86a9c08eca39 /tmux.h | |
parent | c706aadf52f746b695aed34297ad0a910d74eb1b (diff) | |
parent | 4a5182e6658907f876581fbcf4c774bf86d0d953 (diff) | |
download | rtmux-32c3fe40ebbc35285c2b0121dfb3dc5623f9fb73.tar.gz rtmux-32c3fe40ebbc35285c2b0121dfb3dc5623f9fb73.tar.bz2 rtmux-32c3fe40ebbc35285c2b0121dfb3dc5623f9fb73.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1994,12 +1994,12 @@ void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); void tty_cmd_setselection(struct tty *, const struct tty_ctx *); void tty_cmd_rawstring(struct tty *, const struct tty_ctx *); void tty_cmd_syncstart(struct tty *, const struct tty_ctx *); -void tty_cmd_syncend(struct tty *, const struct tty_ctx *); /* tty-term.c */ 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); @@ -2020,7 +2020,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 *); |