]> git.sur5r.net Git - i3/i3/commitdiff
cmdparse: don’t allow empty commands
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 14 Mar 2011 22:03:13 +0000 (23:03 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 14 Mar 2011 22:03:13 +0000 (23:03 +0100)
src/cmdparse.y

index be402f9e4f0bf53045f43e07171fc51968737874..5eb4a0b11b6f1a730a5693d2d30e55d94f3ffbb7 100644 (file)
@@ -153,8 +153,8 @@ char *parse_cmd(const char *new) {
 
 %%
 
-commands: /* empty */
-    commands optwhitespace ';' optwhitespace command
+commands:
+    commands optwhitespace ';' optwhitespace command
     | command
     {
         owindow *current;