~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to gram.y

  • Committer: Matthew Fuller
  • Date: 2016-02-08 10:14:49 UTC
  • Revision ID: fullermd@over-yonder.net-20160208101449-po82qjmg43es3ebl
De-support the pre-3.8 title button syntax.

Show diffs side-by-side

added added

removed removed

Lines of Context:
606
606
 
607
607
binding_entry   : button keyaction { ModifyCurrentTB($1, mods, $2, Action, pull); mods = 0;}
608
608
                | button EQUALS action { ModifyCurrentTB($1, 0, $3, Action, pull);}
609
 
                /* The following is deprecated! */
610
 
                | button COLON action { ModifyCurrentTB($1, 0, $3, Action, pull);}
 
609
                | button COLON action {
 
610
                        /* Deprecated since 3.8, no longer supported */
 
611
                        yyerror("Title buttons specifications without = are no "
 
612
                                "longer supported.");
 
613
                }
611
614
                ;
612
615
 
613
616