1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Ahem, and restore the missing & from that checkin. Arrgh.

[originally from svn r2741]
This commit is contained in:
Simon Tatham 2003-01-28 09:30:14 +00:00
parent 54f033ace0
commit 09815b5050

View File

@ -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 {