Browse Source

core: allow '_' in event route name

- reported by GH #811
Daniel-Constantin Mierla 9 years ago
parent
commit
5806703c1f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cfg.lex

+ 1 - 1
cfg.lex

@@ -500,7 +500,7 @@ COLON		":"
 STAR		\*
 DOT			\.
 CR			\n
-EVENT_RT_NAME [a-zA-Z][0-9a-zA-Z-]*(":"[a-zA-Z][0-9a-zA-Z-]*)+
+EVENT_RT_NAME [a-zA-Z][0-9a-zA-Z-]*(":"[a-zA-Z][0-9a-zA-Z_-]*)+
 
 
 COM_LINE	"#"|"//"