From: fred <fred> Date: Sun, 24 Mar 2002 20:06:31 +0000 (+0000) Subject: lilypond-0.1.48 X-Git-Tag: release/1.5.59~3394 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=05b800ea33650526928a93100f2b0553981953ff;p=lilypond.git lilypond-0.1.48 --- diff --git a/lily/parser.y b/lily/parser.y index 13cc69a973..545d72c8a6 100644 --- a/lily/parser.y +++ b/lily/parser.y @@ -709,7 +709,7 @@ command_req: ; abbrev_command_req: - '|' { + '|' { $$ = new Barcheck_req; } | COMMAND_IDENTIFIER { @@ -729,8 +729,8 @@ verbose_command_req: } | SKIP duration_length { Skip_req * skip_p = new Skip_req; - skip_p->duration_.set_plet ($2->numerator ().as_long (), - $2->denominator ().as_long ()); + skip_p->duration_.set_plet ($2->num (), + $2->den ()); delete $2; $$ = skip_p;