From 5da310618a6be2c7b3bd13c3d6de8128e0cd85d3 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 21:45:36 +0000 Subject: [PATCH] lilypond-1.1.16 --- Documentation/tex/tutorial.yo | 7 ++++--- scripts/convert-mudela.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Documentation/tex/tutorial.yo b/Documentation/tex/tutorial.yo index 3aef3a0891..33add0a7ec 100644 --- a/Documentation/tex/tutorial.yo +++ b/Documentation/tex/tutorial.yo @@ -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] diff --git a/scripts/convert-mudela.py b/scripts/convert-mudela.py index 69feb53f57..d3c89edec7 100644 --- a/scripts/convert-mudela.py +++ b/scripts/convert-mudela.py @@ -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 -- 2.39.5