]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Add \accidentalStyle command
[lilypond.git] / python / convertrules.py
index 6ea53ea37d33a1d35c316b962fdeba69b742c332..c10a22bb5231596ccbba07f2fa8633d0b9af5da7 100644 (file)
@@ -3346,6 +3346,12 @@ def conv (str):
         stderr_write ('\n')
     return str
 
+@rule ((2, 15, 20), r"$(set-accidental-style ...) -> \accidentalStyle")
+def conv (str):
+    str = re.sub (r"\$\(set-accidental-style\s+'([-a-z]+)\)",
+                  r'\\accidentalStyle "\1"', str)
+    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,