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.17.96-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ebee513cb550db57d3739c3510ad0f2fb8179166;p=lilypond.git Issue 3658: variables cannot be used in \tempo command --- diff --git a/lily/parser.yy b/lily/parser.yy index 1bab8b14fd..53b3b4608c 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -3268,10 +3268,10 @@ step_number: ; tempo_range: - UNSIGNED { + unsigned_number { $$ = $1; - } - | UNSIGNED '-' UNSIGNED { + } %prec ':' + | unsigned_number '-' unsigned_number { $$ = scm_cons ($1, $3); } ;