summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-01-21 08:23:12 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-01-21 08:23:12 +0000
commit7f24020cbe477548795754f2f7f01aafc2cd3cb8 (patch)
tree72aeccafa2b025a7c4e2df90769988a2599c8472 /input.c
parentbe7b56a6137847823bfb56f35d1d92f29f2650ad (diff)
Add strings to allow the aixterm bright colours to be used when
configuring colours, requested by Elliott Cable a few months ago.
Diffstat (limited to 'input.c')
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index e6c63207..957053da 100644
--- a/input.c
+++ b/input.c
@@ -1436,7 +1436,7 @@ input_csi_dispatch_sgr(struct input_ctx *ictx)
case 106:
case 107:
gc->flags &= ~GRID_FLAG_BG256;
- gc->bg = n;
+ gc->bg = n - 10;
break;
}
}