summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-01-08 16:22:02 +0000
committerTiago Cunha <tcunha@gmx.com>2010-01-08 16:22:02 +0000
commit7c3d4e35d71c5d1f10ac432c842852b2448ab2f8 (patch)
tree2a6eb5785c9008951a09c9bb855a7027d0000774 /input.c
parent4d8d70a846d813390ab5f806f433a28c4315ed7a (diff)
Sync OpenBSD patchset 599:
Correctly clear 256-colour flag for aixterm colours.
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/input.c b/input.c
index a918bb74..27674d0c 100644
--- a/input.c
+++ b/input.c
@@ -1,4 +1,4 @@
-/* $Id: input.c,v 1.105 2009-12-16 01:13:09 tcunha Exp $ */
+/* $Id: input.c,v 1.106 2010-01-08 16:22:02 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1481,6 +1481,7 @@ input_handle_sequence_sgr(struct input_ctx *ictx)
case 95:
case 96:
case 97:
+ gc->flags &= ~GRID_FLAG_FG256;
gc->fg = m;
break;
case 100:
@@ -1491,6 +1492,7 @@ input_handle_sequence_sgr(struct input_ctx *ictx)
case 105:
case 106:
case 107:
+ gc->flags &= ~GRID_FLAG_BG256;
gc->bg = m;
break;
}