Lynx tolerates *some* whitespace in the config file, but doesn't 
tolerate some other.  This is very confusing.  Patch follows.

Enjoy,
Ilya

--- ./src/LYReadCFG.c~	Tue Nov 10 14:47:38 1998
+++ ./src/LYReadCFG.c	Sun Nov 22 20:35:34 1998
@@ -1077,6 +1077,10 @@ PUBLIC void read_cfg ARGS4(
 	/* skip past colon, but replace ':' with 0 to make name meaningful */
 	*value++ = 0;
 
+	/* Allow spaces around ':' */
+	LYTrimTrailing(name);
+	value = LYSkipBlanks(value);
+
 	/*
 	 *  Trim off any trailing comments.
 	 *
@@ -1090,6 +1094,7 @@ PUBLIC void read_cfg ARGS4(
 	    cp--;
 	    if (isspace ((unsigned char) *cp))
 		*cp = 0;
+	    LYTrimTrailing(value);	/* Trim again */
 	}
 
 	tbl = Config_Table;
