From c1793a8d3c9943293ebcd5725dcbfa26bb2d99ad Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 10 May 2015 14:17:48 +0200 Subject: [PATCH] Issue 4384: Remove convert-ly rule \shiftOff -> \undo\shiftOn For the rationale, see 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. --- python/convertrules.py | 1 - 1 file changed, 1 deletion(-) 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) -- 2.39.5