diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-24 00:21:20 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-24 00:21:20 -0400 |
commit | 44b428bb55ea5ccb0739bcca2131934a676b6344 (patch) | |
tree | efc9743290c05ee951fcd67a995e000d1fa14ff7 /src/LYReadCFG.c | |
parent | 663ccb75029b218a6426112cfaa17d798c03bc03 (diff) | |
download | lynx-snapshots-44b428bb55ea5ccb0739bcca2131934a676b6344.tar.gz |
snapshot of project "lynx", label v2-8-8dev_16w
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 419fd833..4adbd664 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.177 2013/10/21 23:13:30 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.178 2013/10/23 21:26:29 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -648,6 +648,12 @@ static int color_fun(char *value) parse_color(value); return 0; } + +static int lynx_lss_file_fun(char *value) +{ + add_to_lss_list(value, NULL); + return 0; +} #endif #ifdef USE_DEFAULT_COLORS @@ -673,13 +679,6 @@ void update_default_colors(void) #endif } } -#ifdef USE_COLOR_STYLE -static int lynx_lss_file_fun(char *value) -{ - add_to_lss_list(value, NULL); - return 0; -} -#endif static int default_colors_fun(char *value) { |