]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Merge branch 'stable/2.16' into staging
[lilypond.git] / python / convertrules.py
index 78512310c30c35d6bd9513852423a3f14858fc18..fa63726069269c30b9581fe1bff94e87adc75bfa 100644 (file)
@@ -3385,6 +3385,12 @@ def conv (str):
 def conv (str):
     return str
 
+@rule ((2, 17, 0), r"blank-*-force -> blank-*-penalty")
+def conv (str):
+    str = re.sub ('blank-page-force', 'blank-page-penalty', str)
+    str = re.sub ('blank-last-page-force', 'blank-last-page-penalty', str)
+    str = re.sub ('blank-after-score-page-force', 'blank-after-score-page-penalty', str)
+    return str
 
 # Guidelines to write rules (please keep this at the end of this file)
 #