X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/d102f3cf05d750e1600453bc586f8525909ebf46..cdf249c78562c0367968ad6de964245d271524ac:/terminal.c diff --git a/terminal.c b/terminal.c index c4d725ab..9f0f0615 100644 --- a/terminal.c +++ b/terminal.c @@ -2464,6 +2464,8 @@ void term_out(Terminal *term) term->wrapnext = FALSE; /* destructive backspace might be disabled */ if (!term->cfg.no_dbackspace) { + check_boundary(term, term->curs.x, term->curs.y); + check_boundary(term, term->curs.x+1, term->curs.y); copy_termchar(scrlineptr(term->curs.y), term->curs.x, &term->erase_char); }