summaryrefslogtreecommitdiff
path: root/conf/cf-lex.l
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2013-02-10 19:17:38 +0100
committerOndrej Filip <feela@network.cz>2013-02-10 19:17:38 +0100
commit8c4da7e01ded3f06cbf873e67c5ae1cf70cf280b (patch)
treed340c29f46282eb287503586c5fd400929fa9510 /conf/cf-lex.l
parent0bc3542ab6e0a96342e35ead8ff1c52f980facc2 (diff)
Symbol names enclosed by apostrophes can contain DOTs.
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r--conf/cf-lex.l2
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++;