diff options
author | Ondrej Filip <feela@network.cz> | 2013-08-15 13:29:33 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2013-08-15 13:29:33 +0200 |
commit | 1f64a487a065cc27c52ab0d3d38b7c82926fea70 (patch) | |
tree | c22a1d67658e686f9b10c4e97e95950c9db67f84 /conf/cf-lex.l | |
parent | f8e8fcfabeb206287065f48e800743b0aa797cc2 (diff) |
Symbol names enclosed by apostrophes can contain colons.
Diffstat (limited to 'conf/cf-lex.l')
-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 50f390e0..b1bbeae2 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++; |