]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
cleanup. Separate into internal
[lilypond.git] / scripts / convert-ly.py
index 47b8b60cd188fd55587923223c2db2b0e0abdb56..802e4e82a8fbe2a4e976ee830ad574b3a7c78964 100644 (file)
@@ -1821,6 +1821,15 @@ def conv (str):
 
 conversions.append (((2,1,20), conv, """nonevent-skip -> skip-music""" ))
 
+def conv (str):
+       str = re.sub (r'molecule-callback', 'print-function', str)
+       str = re.sub (r'brew_molecule', 'print', str)
+       return str
+
+conversions.append (((2,1,21), conv, """molecule-callback -> print-function,
+brew_molecule -> print
+""" ))
+