]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
* scripts/convert-ly.py (datadir): add prefix switching hack to
[lilypond.git] / python / convertrules.py
index 92436d5a7ddbc29435745556a178100c4389673d..1423a30e370ae487aa9942ba12ede876df878a31 100644 (file)
@@ -2615,3 +2615,13 @@ def conv (str):
 
 conversions.append (((2, 7, 13), conv,
                     '''layout engine refactoring. [FIXME] '''))
+
+
+
+def conv (str):
+       str = re.sub (r"#'callbacks", '', str)
+       str = re.sub (r"([XY]-extent)-callback", r'\1', str)
+       return str
+
+conversions.append (((2, 7, 14), conv,
+                    '''Remove callbacks property, deprecate XY-extent-callback. '''))