]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
''
[lilypond.git] / scripts / convert-ly.py
index 6ae1b0e1dd35a7b0fbd69499b9dea1aa67cfd15f..4ea8a92838c889e8d684a13dc183ff9f9b74cf62 100644 (file)
@@ -840,6 +840,13 @@ if 1:
        
        conversions.append (((1,5,38), conv, 'SystemStartDelimiter -> systemStartDelimiter'))
 
+if 1:
+       def conv (str):
+               str = re.sub ('noAutoBeaming *= *##f', 'autoBeaming = ##t', str)
+               str = re.sub ('noAutoBeaming *= *##t', 'autoBeaming = ##f', str)
+               return str
+       
+       conversions.append (((1,5,49), conv, 'noAutoBeaming -> autoBeaming'))
 
 ################################
 #      END OF CONVERSIONS