]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
Make tempo range \tempo 20~30 be input as \tempo 20-30 instead
[lilypond.git] / lily / parser.yy
index a7d7285a06747382f3765f4c4c479150a82fd8cb..3a64654197fd7ac4ba0fb86463a33dedcec5443c 100644 (file)
@@ -3188,7 +3188,7 @@ tempo_range:
        UNSIGNED {
                $$ = $1;
        }
-       | UNSIGNED '~' UNSIGNED {
+       | UNSIGNED '-' UNSIGNED {
                $$ = scm_cons ($1, $3);
        }
        ;