From: Simon Tatham Date: Tue, 28 Jan 2003 09:30:14 +0000 (+0000) Subject: Ahem, and restore the missing & from that checkin. Arrgh. X-Git-Tag: r8855-g4f798d~1678 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=9d678622c0aabfe03c0e45e026fcc841b784fdfb;p=PuTTY_svn.git Ahem, and restore the missing & from that checkin. Arrgh. git-svn-id: http://svn.tartarus.org/sgt/putty@2741 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/terminal.c b/terminal.c index 6e056467..8736a293 100644 --- a/terminal.c +++ b/terminal.c @@ -976,7 +976,7 @@ static void erase_lots(Terminal *term, while (poslt(start, end)) { if (start.x == term->cols) { if (!erase_lattr) - ldata[start.x] = ~(LATTR_WRAPPED | LATTR_WRAPPED2); + ldata[start.x] &= ~(LATTR_WRAPPED | LATTR_WRAPPED2); else ldata[start.x] = LATTR_NORM; } else {