From: fred Date: Sun, 24 Mar 2002 19:33:46 +0000 (+0000) Subject: lilypond-0.0.37 X-Git-Tag: release/1.5.59~5275 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=60d9978bbefe5dfaf3e26b20d1cdfea7375bc539;p=lilypond.git lilypond-0.0.37 --- diff --git a/Documentation/Makefile b/Documentation/Makefile index f8211b708c..0dc97f7dbe 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -1,5 +1,5 @@ PODS=README.pod CodingStyle.pod lilygut.pod lilyinput.pod error.pod\ - faq.pod index.pod + faq.pod index.pod language.pod TXTS=$(PODS:.pod=.txt) MANS=$(PODS:.pod=.1) HTMLS=$(PODS:.pod=.html) diff --git a/input/standchen.ly b/input/standchen.ly index 41abb47413..650cf456a3 100644 --- a/input/standchen.ly +++ b/input/standchen.ly @@ -487,6 +487,6 @@ score { output "standchen.out" } midi { - tempo 4:80 + tempo 4:60 } } diff --git a/src/misc.cc b/src/misc.cc index f89cdec9f1..093af7f0d4 100644 --- a/src/misc.cc +++ b/src/misc.cc @@ -6,6 +6,7 @@ #include "moment.hh" +// depreciated, see struct Duration* Moment wholes(int dur, int dots) { diff --git a/src/parser.y b/src/parser.y index d065f19cae..b8b175ef1a 100644 --- a/src/parser.y +++ b/src/parser.y @@ -622,6 +622,13 @@ explicit_duration: get_default_duration($$); $$[1] = $1; } + | INT '*' INT '/' INT { + // ugh, must use Duration + set_plet( $3, $5 ); + $$[ 0 ] = $1; + $$[ 1 ] = 0; + set_plet( 1, 1 ); + } ; default_duration: