diff options
author | David Kastrup <dak@gnu.org> | 2015-05-10 14:17:48 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2015-05-17 19:05:34 +0200 |
commit | c1793a8d3c9943293ebcd5725dcbfa26bb2d99ad (patch) | |
tree | a035f31eb332769f15e4b379b1e73e2e714dabcd /python | |
parent | 8783ad7dda158599e86d43a3333ac6d4d0780d41 (diff) |
Issue 4384: Remove convert-ly rule \shiftOff -> \undo\shiftOn
For the rationale, see
<URL:https://codereview.appspot.com/190500043/#msg1>
The presence of the rule will cause similarly surprising effects to
users as it would to the current state of documentation translations.
Even if it were properly mentioned in the diagnostic description of
the conversion rule, people would rarely look closely enough to
notice.
Diffstat (limited to 'python')
-rw-r--r-- | python/convertrules.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/convertrules.py b/python/convertrules.py index 05beeec455..8dc8e9160a 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -3741,7 +3741,6 @@ def conv(str): str = re.sub (r'\bimplicitTimeSignatureVisibility\b', 'initialTimeSignatureVisibility', str) str = re.sub ('(' + before_id + r'[a-g])((?:sharp){1,2}|(?:flat){1,2})' + after_id, 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) |