From 2660692fb18499bedd1f81f8ec88fab1acfd80bc Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 27 Jun 2009 12:57:14 +0000 Subject: [PATCH] Copy the 256-colour flag into the tty saved cell as well as the actual colour, otherwise colour 8 isn't reset properly. --- tty.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tty.c b/tty.c index 459db0a4..75986ef0 100644 --- a/tty.c +++ b/tty.c @@ -1005,6 +1005,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc) (gc->flags & GRID_FLAG_FG256) != (tc->flags & GRID_FLAG_FG256)) { tty_attributes_fg(tty, gc); tc->fg = fg; + tc->flags &= ~GRID_FLAG_FG256; + tc->flags |= gc->flags & GRID_FLAG_FG256; } /* Set background colour. */ @@ -1012,6 +1014,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc) (gc->flags & GRID_FLAG_BG256) != (tc->flags & GRID_FLAG_BG256)) { tty_attributes_bg(tty, gc); tc->bg = bg; + tc->flags &= ~GRID_FLAG_BG256; + tc->flags |= gc->flags & GRID_FLAG_BG256; } }