X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fparser.yy;h=bcbcf0cf10692129a51aef38e5e4602c1e664d18;hb=86f02d911398a55f8b6bfa8e1d843b96856c031b;hp=88da679854cc51cff3533d770299975735045d82;hpb=3b60cb032718e74f7e28cd1fdbb44bf11f69ff94;p=lilypond.git diff --git a/lily/parser.yy b/lily/parser.yy index 88da679854..bcbcf0cf10 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -747,11 +747,12 @@ Simple_music: | property_def | translator_change | Simple_music '*' unsigned '/' unsigned { - /* urg */ - $$ = new Time_scaled_music ($3, $5, $1); + $$ = $1; + $$->compress (Moment($3, $5 )); } | Simple_music '*' unsigned { - $$ = new Time_scaled_music ($3, 1, $1); + $$ = $1; + $$->compress (Moment ($3, 1)); } ;