Erm, use EL in a way that actually works...

pull/1/head
Nicholas Marriott 2012-03-12 12:43:18 +00:00
parent 31ddae7735
commit 575bfa4b4b
1 changed files with 1 additions and 1 deletions

2
tty.c
View File

@ -588,7 +588,7 @@ tty_draw_line(struct tty *tty, struct screen *s, u_int py, u_int ox, u_int oy)
tty_reset(tty);
tty_cursor(tty, ox + sx, oy + py);
if (ox + sx + screen_size_x(s) >= tty->sx &&
if (ox + screen_size_x(s) >= tty->sx &&
tty_term_has(tty->term, TTYC_EL))
tty_putcode(tty, TTYC_EL);
else {