]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / python / convertrules.py
index 700b8c40e475561f101445dd12915202462a0c4f..45ade153967a1b2aacc6c30557c537e2a7295299 100644 (file)
@@ -2884,6 +2884,15 @@ longer in reversed order.\n"))
     str = str.replace('"orchestral strings"', '"orchestral harp"')
     return str
 
+@rule ((2, 13, 1),
+       _ ("\\bar \".\" now produces a thick barline"))
+def conv(str):
+    if re.search(r'\\bar\s*"."', str):
+        stderr_write ("\n")
+        stderr_write (NOT_SMART % _("\\bar \".\" now produces a thick barline.\n"))
+        stderr_write (UPDATE_MANUALLY)
+    return str
+
 # Guidelines to write rules (please keep this at the end of this file)
 #
 # - keep at most one rule per version; if several conversions should be done,