diff options
Diffstat (limited to 'src/LYStyle.c')
-rw-r--r-- | src/LYStyle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LYStyle.c b/src/LYStyle.c index 0d9d0724..8e36c09d 100644 --- a/src/LYStyle.c +++ b/src/LYStyle.c @@ -1,6 +1,6 @@ /* character level styles for Lynx * (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-) - * $Id: LYStyle.c,v 1.2 1997/09/17 23:34:13 tom Exp $ + * $Id: LYStyle.c,v 1.3 1997/09/19 01:14:00 klaus Exp $ */ #include "HTUtils.h" #include "HTML.h" @@ -123,7 +123,7 @@ PRIVATE void parse_attributes ARGS5(char*,mono,char*,fg,char*,bg,int,style,char* * If we have colour, and space to create a new colour attribute, * and we have a valid colour description, then add this style */ - if (lynx_uses_color && colorPairs < COLOR_PAIRS-1 && fA!=-1) + if (lynx_has_color && colorPairs < COLOR_PAIRS-1 && fA!=-1) { colorPairs++; init_pair(colorPairs, fA, bA); |