From 09815b5050b920d835542acbee774a4f940cc13a Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 28 Jan 2003 09:30:14 +0000 Subject: [PATCH] Ahem, and restore the missing & from that checkin. Arrgh. [originally from svn r2741] --- terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {