diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-02-06 21:38:08 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-02-06 21:38:08 -0500 |
commit | 9c63ba04a5785f8ad069bf660402530617451a06 (patch) | |
tree | 8597ad92f9e4398c149583c22798d67e31e3dbad /src/LYReadCFG.c | |
parent | c3ec4181d988501e4d7116f32c669d5ca69e7060 (diff) | |
download | lynx-snapshots-9c63ba04a5785f8ad069bf660402530617451a06.tar.gz |
snapshot of project "lynx", label v2_6fm_970206
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index c0ede5b9..af340803 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -987,7 +987,7 @@ PUBLIC void read_cfg ARGS1( #endif /* VMS */ } else if (!strncasecomp(buffer, "USE_SELECT_POPUPS:", 18)) { - LYSelectPopups = is_true(buffer+18); + LYSelectPopups = is_true(buffer+18); } break; @@ -1043,6 +1043,12 @@ PUBLIC void read_cfg ARGS1( break; case 'W': + if (!strncasecomp(buffer, "XLOADIMAGE_COMMAND:", 19)) { + StrAllocCat(XLoadImageCommand, (char *)&buffer[19]); + } + break; + + case 'X': if (!strncasecomp(buffer, "wais_proxy:", 11)) { if (getenv("wais_proxy") == NULL) { #ifdef VMS |