diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-08-13 13:40:41 -0400 |
commit | fde43024bd6579b609526faf94dcdbcb6f2bc5e1 (patch) | |
tree | 1d4accd9602108b3cc2693d6c0093469274cc332 /src/LYStyle.c | |
parent | 9c512bbadc47a7de000f53f11a7620d83ca0ddba (diff) | |
download | lynx-snapshots-fde43024bd6579b609526faf94dcdbcb6f2bc5e1.tar.gz |
snapshot of project "lynx", label v2-8-3dev_6
Diffstat (limited to 'src/LYStyle.c')
-rw-r--r-- | src/LYStyle.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/LYStyle.c b/src/LYStyle.c index 75bfeccb..4943ca7f 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.23 1999/07/30 16:06:54 tom Exp $ + * @Id: LYStyle.c 1.31 Fri, 13 Aug 1999 07:27:27 -0600 dickey @ */ #include <HTUtils.h> #include <HTML.h> @@ -64,6 +64,10 @@ static char *Mono_Strings[7] = PUBLIC int s_alink = NOSTYLE, s_a = NOSTYLE, s_status = NOSTYLE, s_label = NOSTYLE, s_value = NOSTYLE, s_high = NOSTYLE, s_normal = NOSTYLE, s_alert = NOSTYLE, s_title = NOSTYLE, +#ifdef USE_SCROLLBAR + s_sb_bar = NOSTYLE, s_sb_bg = NOSTYLE, + s_sb_aa = NOSTYLE, s_sb_naa = NOSTYLE, +#endif s_whereis= NOSTYLE; /* start somewhere safe */ @@ -360,6 +364,12 @@ PUBLIC void style_initialiseHashTable NOARGS s_status = hash_code("status"); s_alert = hash_code("alert"); s_title = hash_code("title"); +#ifdef USE_SCROLLBAR + s_sb_bar = hash_code("scroll.bar"); + s_sb_bg = hash_code("scroll.back"); + s_sb_aa = hash_code("scroll.arrow"); + s_sb_naa = hash_code("scroll.noarrow"); +#endif } /* because curses isn't started when we parse the config file, we |