diff options
author | nicm <nicm> | 2017-01-12 00:19:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-12 00:19:32 +0000 |
commit | 9e786030df1e68428fb2fdfa00a26c367ebb475c (patch) | |
tree | 5cf30e0215d2bc9193b099b945b6296af4193911 /screen-write.c | |
parent | 74c40d04eadc40c034634d70925355a0751c1433 (diff) | |
download | rtmux-9e786030df1e68428fb2fdfa00a26c367ebb475c.tar.gz rtmux-9e786030df1e68428fb2fdfa00a26c367ebb475c.tar.bz2 rtmux-9e786030df1e68428fb2fdfa00a26c367ebb475c.zip |
Fix setting the palette of aixterm colours (90-97).
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c index 0fe23df8..227316cb 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1049,7 +1049,7 @@ screen_write_cell(struct screen_write_ctx *ctx, const struct grid_cell *gc) width = gc->data.width; /* - * If this is a wide character and there is no room on the screen, for + * If this is a wide character and there is no room on the screen for * the entire character, don't print it. */ if (!(s->mode & MODE_WRAP) && (width > 1 && |