]> git.donarmstrong.com Git - lilypond.git/commitdiff
(1.9.0): Handle phrasing slur.
authorjanneke <janneke>
Thu, 22 Jan 2004 21:07:50 +0000 (21:07 +0000)
committerjanneke <janneke>
Thu, 22 Jan 2004 21:07:50 +0000 (21:07 +0000)
ChangeLog
scripts/convert-ly.py

index f9eb58c27aa9d192a804547aa5b5ce3b30cdf1ca..6448ea29e56595df68c7a76048c218d34665dbc7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * scripts/convert-ly.py (1.9.0): Handle phrasing slur.
+
 2004-01-22  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
        * scm/music-functions.scm (determine-split-list): bugfixes.
index 3fa5f33f6cbf38eec306b8504598056a30eae846..0812c0e06547c639ae227c2c5ed802a4211a7f0c 100644 (file)
@@ -1406,7 +1406,9 @@ if 1:
        def articulation_substitute (str):
                str = re.sub (r"""([^-])\[ *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
                              r"\1 \2[", str)
-               str = re.sub (r"""([^-])\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
+               str = re.sub (r"""([^-])\\\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
+                             r"\1 \2\\)", str)
+               str = re.sub (r"""([^-\\])\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
                              r"\1 \2)", str)
                str = re.sub (r"""([^-])\\! *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
                              r"\1 \2\\!", str)