commit 493345d64141f0749040830345c805ac4ab19e52 from: Omar Polo date: Mon Aug 30 13:03:53 2021 UTC avoid a shift/reduce conflict yacc/bison reports 8 shift/reduce conflicts because the rule styleopts optnl is redundant. commit - e59aca319b92654af4a8d1fc2f9250d7d7581bc6 commit + 493345d64141f0749040830345c805ac4ab19e52 blob - be9267bc30ef6a42d03ef8b377dc3eb8b3e2900b blob + 34456d00d18df159be3888f045d39b7d6a1e4732 --- parse.y +++ parse.y @@ -101,7 +101,6 @@ style : TSTYLE TSTRING { current_style = $2; } styles stylespec : styleopt | '{' styleopts '}' ; styleopts : /* empty */ - | styleopts optnl | styleopts styleopt optnl ;