diff options
author | Ondrej Filip <feela@network.cz> | 2013-02-10 19:17:38 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2013-02-10 19:17:38 +0100 |
commit | 8c4da7e01ded3f06cbf873e67c5ae1cf70cf280b (patch) | |
tree | d340c29f46282eb287503586c5fd400929fa9510 /conf | |
parent | 0bc3542ab6e0a96342e35ead8ff1c52f980facc2 (diff) |
Symbol names enclosed by apostrophes can contain DOTs.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index c8eae0e8..e0430485 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -172,7 +172,7 @@ else: { return ELSECOL; } -({ALPHA}{ALNUM}*|[']({ALNUM}|[-])*[']) { +({ALPHA}{ALNUM}*|[']({ALNUM}|[-]|[\.])*[']) { if(*yytext == '\'') { yytext[yyleng-1] = 0; yytext++; |