From c4d09c0511f051ea95f65b39712366d1e4479630 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 22 Jun 2008 16:56:47 +0000 Subject: [PATCH] Convert 0x70 -> 0x88. --- server.c | 4 ++-- window-copy.c | 4 ++-- window-more.c | 4 ++-- window-scroll.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/server.c b/server.c index 2ac9e270..f5349c5a 100644 --- a/server.c +++ b/server.c @@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.74 2008-06-20 17:31:48 nicm Exp $ */ +/* $Id: server.c,v 1.75 2008-06-22 16:56:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -344,7 +344,7 @@ server_check_redraw(struct client *c) screen_redraw_columns(&ctx, sx, xx - sx); if (sy < yy) { screen_fill_area(&screen, - 0, sy, xx, 1, '-', 0, 0x70); + 0, sy, xx, 1, '-', 0, 0x88); screen_redraw_lines(&ctx, sy, yy - sy); } screen_redraw_stop(&ctx); diff --git a/window-copy.c b/window-copy.c index fc5708b0..42c9290d 100644 --- a/window-copy.c +++ b/window-copy.c @@ -1,4 +1,4 @@ -/* $Id: window-copy.c,v 1.21 2008-06-20 18:45:35 nicm Exp $ */ +/* $Id: window-copy.c,v 1.22 2008-06-22 16:56:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -207,7 +207,7 @@ window_copy_write_line( if (py == 0) { screen_write_set_attributes( - ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x70); + ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x88); screen_write_move_cursor(ctx, 0, 0); size = screen_write_put_string_rjust( ctx, "[%u,%u/%u]", data->ox, data->oy, w->base.hsize); diff --git a/window-more.c b/window-more.c index aac0341f..b5877519 100644 --- a/window-more.c +++ b/window-more.c @@ -1,4 +1,4 @@ -/* $Id: window-more.c,v 1.13 2008-06-20 17:31:48 nicm Exp $ */ +/* $Id: window-more.c,v 1.14 2008-06-22 16:56:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -172,7 +172,7 @@ window_more_write_line(struct window *w, struct screen_write_ctx *ctx, u_int py) if (py == 0) { screen_write_set_attributes( - ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x70); + ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x88); screen_write_move_cursor(ctx, 0, 0); size = screen_write_put_string_rjust( ctx, "[%u/%u]", data->top, ARRAY_LENGTH(&data->list)); diff --git a/window-scroll.c b/window-scroll.c index 9590ef21..639f716d 100644 --- a/window-scroll.c +++ b/window-scroll.c @@ -1,4 +1,4 @@ -/* $Id: window-scroll.c,v 1.19 2008-06-20 17:31:48 nicm Exp $ */ +/* $Id: window-scroll.c,v 1.20 2008-06-22 16:56:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -154,7 +154,7 @@ window_scroll_write_line( if (py == 0) { screen_write_set_attributes( - ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x70); + ctx, ATTR_BRIGHT|ATTR_REVERSE, 0x88); screen_write_move_cursor(ctx, 0, 0); size = screen_write_put_string_rjust( ctx, "[%u,%u/%u]", data->ox, data->oy, w->base.hsize);