]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.16
authorfred <fred>
Tue, 26 Mar 2002 21:45:36 +0000 (21:45 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:45:36 +0000 (21:45 +0000)
Documentation/tex/tutorial.yo
scripts/convert-mudela.py

index 3aef3a08915becfd2c7c6bd39047c3372c312e49..33add0a7ec5564f7badefdccbb7e3c2b2e629246 100644 (file)
@@ -1214,7 +1214,7 @@ COMMENT(
 \type Lyrics \lyrics { 'got8 me on my knees,4 Le-8 lie! })COMMENT(
 
 )The result is technically correct, but it needs a melody to make it
-performable: COMMENT(
+perfor0mable: COMMENT(
 
 )mudela(fragment,verbatim)(
   <
@@ -1601,7 +1601,7 @@ The notes in a triplet take 2/3 of their notated duration.  The syntax
 for triplet in LilyPond reflects this.  To make a triplet, you enter
 COMMENT(
 
-)mudela(fragment,center)(
+)mudela(verbatim,fragment,center)(
        \type Voice \times 2/3 { c''4 c''4 c''4 }
 )COMMENT(
 
@@ -1612,7 +1612,7 @@ don't need this, if a Voice context is already instantiated, like in
 the following example:
 COMMENT(
 
-)mudela(fragment,center)(
+)mudela(fragment,verbatim,center)(
        c''4 \times 2/3 { c''4 c''4 c''4 } c''4
 )COMMENT(
 
@@ -1628,3 +1628,4 @@ the bracket, the bracket is omitted.
 
 sect(Repeats)
 
+[todo]
index 69feb53f57f55ee756a92da475f6323e9121e913..d3c89edec7bfa296ab01c3f7390b912767ea9b31 100644 (file)
@@ -274,7 +274,7 @@ if 1:
        def conv(lines):
                newlines =[]
                for x in lines:
-                       x =  re.sub ('<\\[ ','[<', x)
+                       x =  re.sub ('<\\[','[<', x)
                        x =  re.sub ('\\]>','>]', x)
                        newlines.append (x)
                return newlines