]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Also allow WORDs as workspace names (Thanks Grauwolf)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 18 Nov 2009 18:53:57 +0000 (19:53 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 18 Nov 2009 18:53:57 +0000 (19:53 +0100)
src/cfgparse.y

index ff96bb5b9d3b90b32a3c352ab3e0a73844c45dbb..0623ddde00dd8b2a733f9997fda98a73d6b569e8 100644 (file)
@@ -412,6 +412,7 @@ optional_workspace_name:
 workspace_name:
         QUOTEDSTRING         { $<string>$ = $<string>1; }
         | STR                { $<string>$ = $<string>1; }
+        | WORD               { $<string>$ = $<string>1; }
         ;
 
 screen: