]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
* scm/stencil.scm (stack-lines): return empty-stencil if argument
[lilypond.git] / scripts / convert-ly.py
index 7ad48eaf1bb17544993a001029db6ee291390a36..27704d492a8514bc91eb4aab616fc70d497e552c 100644 (file)
@@ -2271,6 +2271,16 @@ conversions.append (((2, 5, 0),
                     ''))
 
 
+def conv (str):
+       str = re.sub (r'ly:import-module',
+                     r'ly:module-copy', str) 
+       return str
+
+conversions.append (((2, 5, 1),
+                    conv,
+                    'ly:import-module -> ly:module-copy'))
+
+
 
 ################################
 #      END OF CONVERSIONS