X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=config%2Fzconf.l;h=289813deb8cb7775583236c612bc1e27e86f30b3;hp=112a0ee1b0a0c2c6c33354aa24f1ed708066a700;hb=470582e04372ab9d3079f0da8d6887d339b4a68b;hpb=6b4d2c4d403607081898cef5ff722a9c6509087f diff --git a/config/zconf.l b/config/zconf.l index 112a0ee..289813d 100644 --- a/config/zconf.l +++ b/config/zconf.l @@ -88,12 +88,6 @@ n [A-Za-z0-9_-] return T_EOL; } [ \t]*#.* - - -[ \t]+ { - BEGIN(COMMAND); -} - . { unput(yytext[0]); BEGIN(COMMAND); @@ -221,6 +215,8 @@ n [A-Za-z0-9_-] } <> { BEGIN(INITIAL); + yylval.string = text; + return T_WORD_QUOTE; } }