]> git.sur5r.net Git - i3/i3/commitdiff
finally remove the deprecated 'screen' keyword from cfgparse.l
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Sep 2011 21:27:31 +0000 (22:27 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Sep 2011 21:27:31 +0000 (22:27 +0100)
src/cfgparse.l

index 12840f26b0c21a543461f628bd2d348e4d11541a..e5dd29c0c972f5d946cacae28019b059aa4a349f 100644 (file)
@@ -106,13 +106,6 @@ bindsym                         { yy_push_state(BINDSYM_COND); yy_push_state(EAT
 floating_modifier               { BEGIN(INITIAL); return TOKFLOATING_MODIFIER; }
 workspace                       { BEGIN(INITIAL); return TOKWORKSPACE; }
 output                          { yy_push_state(OUTPUT_COND); yy_push_state(EAT_WHITESPACE); return TOKOUTPUT; }
-screen                          {
-                                  /* for compatibility until v3.φ */
-                                  ELOG("Assignments to screens are DEPRECATED and will not work. " \
-                                       "Please replace them with assignments to outputs.\n");
-                                  yy_push_state(OUTPUT_COND); yy_push_state(EAT_WHITESPACE);
-                                  return TOKOUTPUT;
-                                }
 terminal                        { WS_STRING; return TOKTERMINAL; }
 font                            { WS_STRING; return TOKFONT; }
 assign                          { yy_push_state(ASSIGN_TARGET_COND); yy_push_state(ASSIGN_COND); return TOKASSIGN; }