From 33aeaf9fa3c02e3e9398d4b99965fc94984b9a44 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 15 Sep 2013 16:14:50 +0200 Subject: [PATCH] convert-ly rule for simplifying \stringTuning --- python/convertrules.py | 6 ++++++ 1 file changed, 6 insertions(+) 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, -- 2.39.2