Merge pull-request #2766

This commit is contained in:
Frederic Guillot 2017-02-05 12:11:21 -05:00
commit a9a53e05a0
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class Lexer
'/^([<=>]{0,2}[0-9]{4}-[0-9]{2}-[0-9]{2})/' => 'T_STRING',
'/^([<=>]{1,2}\w+)/u' => 'T_STRING',
'/^([<=>]{1,2}".+")/' => 'T_STRING',
'/^("(.+)")/' => 'T_STRING',
'/^("(.*?)")/' => 'T_STRING',
'/^(\S+)/u' => 'T_STRING',
'/^(#\d+)/' => 'T_STRING',
);