aboutsummaryrefslogtreecommitdiff
path: root/window-more.c
diff options
context:
space:
mode:
Diffstat (limited to 'window-more.c')
-rw-r--r--window-more.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/window-more.c b/window-more.c
index 362bb121..2a688497 100644
--- a/window-more.c
+++ b/window-more.c
@@ -1,4 +1,4 @@
-/* $Id: window-more.c,v 1.16 2008-07-24 21:42:40 nicm Exp $ */
+/* $Id: window-more.c,v 1.17 2008-09-08 17:40:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -169,14 +169,14 @@ 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, 0x88);
+ ctx, ATTR_BRIGHT|ATTR_REVERSE, 8, 8);
screen_write_move_cursor(ctx, 0, 0);
size = screen_write_put_string_rjust(
ctx, "[%u/%u]", data->top, ARRAY_LENGTH(&data->list));
} else
size = 0;
- screen_write_set_attributes(ctx, 0, 0x88);
+ screen_write_set_attributes(ctx, 0, 8, 8);
screen_write_move_cursor(ctx, 0, py);
if (data->top + py < ARRAY_LENGTH(&data->list)) {
msg = ARRAY_ITEM(&data->list, data->top + py);