Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/wscons Define a real white color - since WSCOL_WHITE...



details:   https://anonhg.NetBSD.org/src/rev/0cc9ec5fc883
branches:  trunk
changeset: 581060:0cc9ec5fc883
user:      martin <martin%NetBSD.org@localhost>
date:      Sun May 22 20:16:08 2005 +0000

description:
Define a real white color - since WSCOL_WHITE is ANSI-emulation specific
defined as grey (which can't be fixed w/o breaking user config files).
Fixes PR kern/30064.

diffstat:

 sys/dev/wscons/wsdisplayvar.h |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 4a4a0c218d44 -r 0cc9ec5fc883 sys/dev/wscons/wsdisplayvar.h
--- a/sys/dev/wscons/wsdisplayvar.h     Sun May 22 19:31:15 2005 +0000
+++ b/sys/dev/wscons/wsdisplayvar.h     Sun May 22 20:16:08 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wsdisplayvar.h,v 1.30 2005/02/04 02:10:49 perry Exp $ */
+/* $NetBSD: wsdisplayvar.h,v 1.31 2005/05/22 20:16:08 martin Exp $ */
 
 /*
  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
@@ -66,6 +66,7 @@
 #define WSCOL_MAGENTA  5
 #define WSCOL_CYAN     6
 #define WSCOL_WHITE    7
+#define WSCOL_REALWHITE        (WSCOL_WHITE+8)
 /* flag values: */
 #define WSATTR_REVERSE 1
 #define WSATTR_HILIT   2



Home | Main Index | Thread Index | Old Index