]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
make \shiftOff an assertive \override, not a \revert
[lilypond.git] / python / convertrules.py
index 02f41a23663632ee0fa543968bde74102f3f9bb1..0df4b09b1d735a863bd8d4bdd76a66e6a35bfc66 100644 (file)
@@ -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)