]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / python / convertrules.py
index f2571e882321ce45fb75b6d9cf5e4ab7e1561000..d535ae8ce96dda13cfe17e895b6e5e460b35ce81 100644 (file)
@@ -2680,7 +2680,6 @@ conversions.append (((2, 7, 28), conv,
 
 def conv (str):
     for a in ['beamed-lengths', 'beamed-minimum-free-lengths',
-              'lengths',
              'beamed-extreme-minimum-free-lengths']:
        str = re.sub (r"\\override\s+Stem\s+#'%s" % a,
                      r"\\override Stem #'details #'%s" % a,
@@ -2796,14 +2795,3 @@ def conv (str):
     return str
 
 conversions.append (((2, 9, 6), conv, """\context Foo \applyOutput #bla -> \applyOutput #'Foo #bla """))
-
-
-def conv (str):
-    str = re.sub ('annotatepage', 'annotate-page', str)
-    str = re.sub ('annotateheaders', 'annotate-headers', str)
-    str = re.sub ('annotatesystems', 'annotate-systems', str)
-    return str
-
-conversions.append (((2, 9, 9), conv, """annotatefoo -> annotate-foo"""))
-
-