From: David Kastrup Date: Mon, 18 Nov 2013 13:52:00 +0000 (+0100) Subject: Issue 3658: variables cannot be used in \tempo command X-Git-Tag: release/2.19.0-1~128 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d8e2f819a77d2aa74cfa3d09ae614d8a7a89efce;p=lilypond.git Issue 3658: variables cannot be used in \tempo command --- diff --git a/lily/parser.yy b/lily/parser.yy index 1ec7578f5b..e8fec3de2a 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -3321,10 +3321,10 @@ step_number: ; tempo_range: - UNSIGNED { + unsigned_number { $$ = $1; - } - | UNSIGNED '-' UNSIGNED { + } %prec ':' + | unsigned_number '-' unsigned_number { $$ = scm_cons ($1, $3); } ;