summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2013-10-04 11:57:59 +0200
committerDavid Kastrup <dak@gnu.org>2013-10-04 11:57:59 +0200
commitad5bb64a2fa2904c342407e6d6a993067eccaa2c (patch)
tree5275f480317c4942928797063fed37dae118ed5d /python
parent45dd19546e9b75b3e1e977732f0962f35dd3290e (diff)
Revert "Add one-time convert-ly rule for grace beaming"
This reverts commit bbdf994d643ea96c3cabfb40fbe2f4d22af93233. The convert-ly rule was only intended for making our documentation somewhat snappier. Since it is only intended to remove manual beamings that have now become redundant, it's mainly interesting for documentation rather than user-level documents.
Diffstat (limited to 'python')
-rw-r--r--python/convertrules.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/python/convertrules.py b/python/convertrules.py
index 2202cf0d99..1ab911cca2 100644
--- a/python/convertrules.py
+++ b/python/convertrules.py
@@ -3672,12 +3672,6 @@ def conv(str):
stderr_write (_ ("Staff-padding now controls the distance to the baseline, not the nearest point."))
return str
-@rule((2, 17, 28), r'''\grace { x[ ... ] } -> \grace { x ... }''')
-def conv(str):
- str = re.sub (r"(\\(?:grace|appoggiatura|acciaccatura|slashedGrace)\s*\{\s*(?:[()a-zA-Z',0-9.]|\\[()])*)\[([^][{}]*)\]((?:[()]|\\[()]|\s)*\})",
- r"\1\2\3", str)
- return str
-
# Guidelines to write rules (please keep this at the end of this file)
#
# - keep at most one rule per version; if several conversions should be done,