mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08:00
We can't tell what the terminal has done with a DCS string, so reset the
cursor and attributes afterwards.
This commit is contained in:
parent
59c760dfcd
commit
b433886840
6
tty.c
6
tty.c
@ -1046,6 +1046,12 @@ tty_cmd_rawstring(struct tty *tty, const struct tty_ctx *ctx)
|
|||||||
|
|
||||||
for (i = 0; i < ctx->num; i++)
|
for (i = 0; i < ctx->num; i++)
|
||||||
tty_putc(tty, str[i]);
|
tty_putc(tty, str[i]);
|
||||||
|
|
||||||
|
tty->cx = tty->cy = UINT_MAX;
|
||||||
|
tty->rupper = tty->rlower = UINT_MAX;
|
||||||
|
|
||||||
|
tty_reset(tty);
|
||||||
|
tty_cursor(tty, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user