mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 14:39:24 -05:00
Ahem, and restore the missing & from that checkin. Arrgh.
[originally from svn r2741]
This commit is contained in:
parent
54f033ace0
commit
09815b5050
@ -976,7 +976,7 @@ static void erase_lots(Terminal *term,
|
|||||||
while (poslt(start, end)) {
|
while (poslt(start, end)) {
|
||||||
if (start.x == term->cols) {
|
if (start.x == term->cols) {
|
||||||
if (!erase_lattr)
|
if (!erase_lattr)
|
||||||
ldata[start.x] = ~(LATTR_WRAPPED | LATTR_WRAPPED2);
|
ldata[start.x] &= ~(LATTR_WRAPPED | LATTR_WRAPPED2);
|
||||||
else
|
else
|
||||||
ldata[start.x] = LATTR_NORM;
|
ldata[start.x] = LATTR_NORM;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user