mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Ahem, and restore the missing & from that checkin. Arrgh.
[originally from svn r2741]
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user