Overrides need to be applied both before and after features in case they

change flags used to detect a feature.
pull/2195/head
nicm 2020-04-23 10:22:53 +00:00
parent e25fa4ba1b
commit 766b425d05
1 changed files with 4 additions and 1 deletions

View File

@ -528,6 +528,9 @@ tty_term_create(struct tty *tty, char *name, int *feat, int fd, char **cause)
/* Delete curses data. */
del_curterm(cur_term);
/* Apply overrides so any capabilities used for features are changed. */
tty_term_apply_overrides(term);
/* These are always required. */
if (!tty_term_has(term, TTYC_CLEAR)) {
xasprintf(cause, "terminal does not support clear");
@ -554,7 +557,7 @@ tty_term_create(struct tty *tty, char *name, int *feat, int fd, char **cause)
if (tty_term_flag(term, TTYC_XT))
tty_add_features(feat, "title", ":,");
/* Apply the features and overrides. */
/* Apply the features and overrides again. */
tty_apply_features(term, *feat);
tty_term_apply_overrides(term);