Clean up use of yytext, which was incorrect and causes problems
with some breeds of yacc. yytext is for the lexer, yylval for
the parser, and the twain shall only meet in the lexer code.
Thus configlex.l ensures that yytext is strdup'd into yylval.sval
before we hand it over to the parser.