Allow " " and ":" in file name transtions
We have added a couple of file name transtitions that required a space and a colon.
This commit is contained in:
parent
f44a218e5c
commit
4d2dd33411
|
@ -240,7 +240,7 @@ HIGH { return(HIGH); }
|
|||
low |
|
||||
LOW { return(LOW); }
|
||||
"/"({alnum}|[_\.\-/])* { return(PATH); }
|
||||
\"({alnum}|[_\.\-\+\~])+\" { return(FILENAME); }
|
||||
\"({alnum}|[_\.\-\+\~\: ])+\" { return(FILENAME); }
|
||||
{letter}({alnum}|[_\-])*([\.]?({alnum}|[_\-]))* { return(IDENTIFIER); }
|
||||
{alnum}*{letter}{alnum}* { return(FILESYSTEM); }
|
||||
{digit}+|0x{hexval}+ { return(NUMBER); }
|
||||
|
|
Loading…
Reference in New Issue