]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
release: 1.3.122
[lilypond.git] / scripts / convert-ly.py
index 34bf1af183b32a83b80c088904cc2632603caad7..0c0505f58bb3784915e94cef2ddcdd3d57e3a85b 100644 (file)
@@ -619,6 +619,7 @@ if 1:
                
                str = re.sub ('(paper_[a-z]+)', regularize_paper, str)
                str = re.sub ('sustainup', 'sustainUp', str)
+               str = re.sub ('nobreak', 'noBreak', str)
                str = re.sub ('sustaindown', 'sustainDown', str)
                str = re.sub ('sostenutoup', 'sostenutoUp', str)
                str = re.sub ('sostenutodown', 'sostenutoDown', str)
@@ -632,9 +633,10 @@ if 1:
 if 1:
        def conv (str):
                str = re.sub ('drarnChords', 'chordChanges', str)
+               str = re.sub ('\\musicalpitch', '\\pitch', str)
                return str
        
-       conversions.append (((1,3,122), conv, 'drarnChords -> chordChanges'))
+       conversions.append (((1,3,122), conv, 'drarnChords -> chordChanges, \\musicalpitch -> \\pitch'))
 
 
 ############################