Commit 6f957e70 6f957e7012f9c3e5d077566e87a56a048348b1c7 by Sergey Poznyakoff

(sizetag production): added missing semicolon, required by modern yaccs.

1 parent 87fa9510
......@@ -393,8 +393,9 @@ comptag: IS { $$ = IS; }
$$ = REGEX; }
;
sizetag: OVER { $$ = OVER; }
sizetag : OVER { $$ = OVER; }
| UNDER { $$ = UNDER; }
;
testlist: '(' tests ')' { $$ = $2; }
;
......