From d8e2f819a77d2aa74cfa3d09ae614d8a7a89efce Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 18 Nov 2013 14:52:00 +0100 Subject: [PATCH] Issue 3658: variables cannot be used in \tempo command --- lily/parser.yy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } ; -- 2.39.5