From: David Kastrup Date: Sun, 15 Sep 2013 14:14:50 +0000 (+0200) Subject: convert-ly rule for simplifying \stringTuning X-Git-Tag: release/2.17.27-1~18 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=33aeaf9fa3c02e3e9398d4b99965fc94984b9a44;p=lilypond.git convert-ly rule for simplifying \stringTuning --- diff --git a/python/convertrules.py b/python/convertrules.py index ba65d9683d..854b8d2304 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -3641,6 +3641,12 @@ def conv(str): str = re.sub (words + "|" + matchstring, wordreplace, str) return str +@rule((2, 17, 27), r'''\stringTuning \notemode -> \stringTuning''') +def conv(str): + str = re.sub (r"\\stringTuning\s*\\notemode(\s*)@?\{\s*(.*?)\s*@?}", + r"\\stringTuning\1\2", 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,