]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
* lily/parser.yy (context_def_mod): remove \consistsend
[lilypond.git] / scripts / convert-ly.py
index 965d6d6978de39bbf9e8d75bbbab1ca4208132b2..9ea4fcd27ed329c21be2dc0a9dc4ddabbd8f73c6 100644 (file)
@@ -2115,6 +2115,16 @@ def conv (str):
 conversions.append (((2, 3, 4), conv,
                     '''remove \\notes'''))
 
+
+
+def conv (str):
+       str = re.sub (r'\\consistsend', '\\consists', str)
+       return str
+
+conversions.append (((2, 3, 8), conv,
+                    '''remove \\consistsend'''))
+
+
 ################################
 #      END OF CONVERSIONS      
 ################################