diff options
author | Keith OHara <k-ohara5a5a@oco.net> | 2014-12-30 23:29:23 -0800 |
---|---|---|
committer | Keith OHara <k-ohara5a5a@oco.net> | 2015-01-17 21:41:03 -0800 |
commit | 30a6581b78cd49b6600d43e8aa7b6d9e35cabb31 (patch) | |
tree | cf4f8ca239f5efb760a6cd6f3c19959d769caab8 /python | |
parent | 36bb1a592b0c33c466ffd4f5e7a05c8b5b225a28 (diff) |
make \shiftOff an assertive \override, not a \revert
Diffstat (limited to 'python')
-rw-r--r-- | python/convertrules.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |