mirror of
https://github.com/tmux/tmux.git
synced 2025-12-19 00:02:06 -05:00
Check the right flags member, reported by someone in GitHub issue 4634.
This commit is contained in:
parent
50dafd6187
commit
7516f8e94f
2
tty.c
2
tty.c
@ -390,7 +390,7 @@ tty_send_requests(struct tty *tty)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (tty->term->flags & TERM_VT100LIKE) {
|
if (tty->term->flags & TERM_VT100LIKE) {
|
||||||
if (~tty->term->flags & TTY_HAVEDA)
|
if (~tty->flags & TTY_HAVEDA)
|
||||||
tty_puts(tty, "\033[c");
|
tty_puts(tty, "\033[c");
|
||||||
if (~tty->flags & TTY_HAVEDA2)
|
if (~tty->flags & TTY_HAVEDA2)
|
||||||
tty_puts(tty, "\033[>c");
|
tty_puts(tty, "\033[>c");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user