aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-12-06 21:57:57 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-12-06 21:57:57 +0000
commit21d10e68940743dc6ef1d235b455b00c71540905 (patch)
tree5bd3870ee8884dd1284c47eccce1667eea0eed53 /tmux.h
parent9a37eb4d94ab26b2d70ead0f75ff90817c274418 (diff)
downloadrtmux-21d10e68940743dc6ef1d235b455b00c71540905.tar.gz
rtmux-21d10e68940743dc6ef1d235b455b00c71540905.tar.bz2
rtmux-21d10e68940743dc6ef1d235b455b00c71540905.zip
Use the current attr/colours for filling in new areas, this fixes the echo \\033[35\;46m\\033[2J bug.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index ac4e2986..e46abdf7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.112 2007-12-06 18:28:55 nicm Exp $ */
+/* $Id: tmux.h,v 1.113 2007-12-06 21:57:57 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -454,7 +454,7 @@ struct screen_write_ctx {
/* Screen default contents. */
#define SCREEN_DEFDATA ' '
#define SCREEN_DEFATTR 0
-#define SCREEN_DEFCOLR 0x88
+#define SCREEN_DEFCOLR 0x70 /* white on black */
/* Input parser sequence argument. */
struct input_arg {