]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
Issue 2530: Use fractions rather than Scheme pairs for \scaleDuration, timeSignatureF...
[lilypond.git] / lily / parser.yy
index 601d63fc31e5586ad9016195f48d031644a8549b..49acd012d51ca0820db2b8cdf3a613aedbdcf901 100644 (file)
@@ -786,6 +786,9 @@ identifier_init:
        | number_expression {
                $$ = $1;
        }
+       | FRACTION {
+               $$ = $1;
+       }
        | string {
                $$ = $1;
        }
@@ -2060,12 +2063,14 @@ simple_string: STRING {
 scalar:
        embedded_scm_arg
        | bare_number
+       | FRACTION
        | lyric_element
        ;
 
 scalar_closed:
        embedded_scm_arg_closed
        | bare_number
+       | FRACTION
        | lyric_element
        ;