parser: only skip set[\s], not set.*

fixes #2564
This commit is contained in:
Michael Stapelberg 2017-08-20 12:58:13 +02:00
parent bb0aac6e39
commit c04b8592fd
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ state INITIAL:
end -> end ->
error -> error ->
'#' -> IGNORE_LINE '#' -> IGNORE_LINE
'set' -> IGNORE_LINE 'set ' -> IGNORE_LINE
'set ' -> IGNORE_LINE
'set_from_resource' -> IGNORE_LINE 'set_from_resource' -> IGNORE_LINE
bindtype = 'bindsym', 'bindcode', 'bind' -> BINDING bindtype = 'bindsym', 'bindcode', 'bind' -> BINDING
'bar' -> BARBRACE 'bar' -> BARBRACE