]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.37
authorfred <fred>
Sun, 24 Mar 2002 19:33:46 +0000 (19:33 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:33:46 +0000 (19:33 +0000)
Documentation/Makefile
input/standchen.ly
src/misc.cc
src/parser.y

index f8211b708cd8ee35b80370b917a3b22d26fa528b..0dc97f7dbe4a25d2b03293a2567a157e8c22b1c4 100644 (file)
@@ -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)
index 41abb47413138c3815fffcb1ecbb781d83913b1c..650cf456a3b2b1c39e43c534faf2b35b638acb0d 100644 (file)
@@ -487,6 +487,6 @@ score {
                output "standchen.out"
        }
        midi {
-               tempo 4:80
+               tempo 4:60
        }
 }
index f89cdec9f1c455f187d92ab49ff4400703f314f6..093af7f0d4b89b80264671dd2eaab4c85961be2c 100644 (file)
@@ -6,6 +6,7 @@
 #include "moment.hh"
 
 
+// depreciated, see struct Duration*
 Moment
 wholes(int dur, int dots)
 {
index d065f19cae89b1209754f347b42bceaef4c91dba..b8b175ef1a5f30cf9710bf374a6982e2d34bf45e 100644 (file)
@@ -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: