diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-01-10 10:27:52 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-01-10 10:27:52 -0500 |
commit | 84ece865f60532ee0c5c2ebd367a26bf831d2988 (patch) | |
tree | 14d23050ee0c3e139e4839738a05914dd718d859 /src/LYReadCFG.c | |
parent | 8d8e6faf5fdb7a3492cae147fac00e582ae324f7 (diff) | |
download | lynx-snapshots-84ece865f60532ee0c5c2ebd367a26bf831d2988.tar.gz |
snapshot of project "lynx", label v2-8-8dev_8
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 4ed5b47a..8a2b3fad 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.160 2010/12/10 01:16:27 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.161 2011/01/10 10:27:52 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -1205,7 +1205,7 @@ static int parse_assumed_doc_charset_choice(char *p) */ static int external_fun(char *str) { - add_item_to_list(str, &externals, FALSE, FALSE); + add_item_to_list(str, &externals, FALSE, TRUE); return 0; } #endif @@ -1469,8 +1469,8 @@ static Config_Type Config_Table [] = PARSE_FUN(RC_ENABLE_LYNXRC, enable_lynxrc), PARSE_SET(RC_ENABLE_SCROLLBACK, enable_scrollback), #ifdef USE_EXTERNALS - PARSE_FUN(RC_EXTERNAL, external_fun), - PARSE_ADD(RC_EXTERNAL_MENU, externals), + PARSE_ADD(RC_EXTERNAL, externals), + PARSE_FUN(RC_EXTERNAL_MENU, external_fun), #endif PARSE_Env(RC_FINGER_PROXY, 0), #if defined(_WINDOWS) /* 1998/10/05 (Mon) 17:34:15 */ @@ -1940,7 +1940,7 @@ void LYSetConfigValue(const char *name, add_item_to_list(value, q->add_value, (q->add_value == &printers), - TRUE); + FALSE); break; case CONF_ADD_STRING: |