diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-01-21 08:23:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-01-21 08:23:13 +0000 |
commit | 90b9a86500506e817f10ec8f397849189239f0b2 (patch) | |
tree | a70f34fa15b09af671b87fedc88bb24fa6ad307b /usr.bin/tmux/input.c | |
parent | bfc62586a6f66b9683992d51bc4002f957f634dc (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 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 519056cc54c..cd821f488e6 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.46 2012/01/21 08:12:03 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.47 2012/01/21 08:23:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; } } |