Correctly process empty comments like /**/
This commit is contained in:
parent
3bea5777aa
commit
564b76f12f
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ NEEDED_KEYS = set(["width", "casing-width", "fill-color", "fill-image", "icon-im
|
|||
|
||||
WHITESPACE = re.compile(r'^ \s+ ', re.S | re.X)
|
||||
|
||||
COMMENT = re.compile(r'^ \/\* .+? \*\/ \s* ', re.S | re.X)
|
||||
COMMENT = re.compile(r'^ \/\* .*? \*\/ \s* ', re.S | re.X)
|
||||
CLASS = re.compile(r'^ ([\.:]:?[*\w]+) \s* ', re.S | re.X)
|
||||
#NOT_CLASS = re.compile(r'^ !([\.:]\w+) \s* ', re.S | re.X)
|
||||
ZOOM = re.compile(r'^ \| \s* z([\d\-]+) \s* ', re.I | re.S | re.X)
|
||||
|
|
Loading…
Add table
Reference in a new issue