X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=python%2Fconvertrules.py;h=0df4b09b1d735a863bd8d4bdd76a66e6a35bfc66;hb=30a6581b78cd49b6600d43e8aa7b6d9e35cabb31;hp=02f41a23663632ee0fa543968bde74102f3f9bb1;hpb=36bb1a592b0c33c466ffd4f5e7a05c8b5b225a28;p=lilypond.git diff --git a/python/convertrules.py b/python/convertrules.py index 02f41a2366..0df4b09b1d 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -3728,6 +3728,7 @@ csharp -> c-sharp""") def conv(str): str = re.sub (r'\bimplicitTimeSignatureVisibility\b', 'initialTimeSignatureVisibility', str) str = re.sub (r'\b([a-g])((?:sharp){1,2}|(?:flat){1,2})\b',r'\1-\2', str) + str = re.sub (r'\\shiftOff\b', r'\\undo\\shiftOn', str) return str # Guidelines to write rules (please keep this at the end of this file)