]> git.donarmstrong.com Git - lilypond.git/commitdiff
Revert "Issue 4068: Add a convert-ly rule for xxx #'yyy #'zzz = -> xxx.yyy.zzz ="
authorDavid Kastrup <dak@gnu.org>
Sun, 24 Aug 2014 11:21:59 +0000 (13:21 +0200)
committerDavid Kastrup <dak@gnu.org>
Sun, 24 Aug 2014 11:21:59 +0000 (13:21 +0200)
This reverts commit 7f34e80b8d8bebfa4b1f3721a12718b04d7e02f4.

python/convertrules.py

index 7809041353a3f9d909cb7e15da1345b0159bc8a8..c506bc15428d37e88832358748d50e7600d72797 100644 (file)
@@ -3723,12 +3723,6 @@ def conv(str):
     str = re.sub (r'\bthin-kern\b', 'segno-kern', str)
     return str
 
-@rule ((2, 19, 12), "var #'prop ... = -> var.prop =")
-def conv(str):
-    str = re.sub (r'(\s)(' + wordsyntax + r"(?:\s+#\s*'\s*"
-                  + wordsyntax + r")+)(?=\s*=)", path_replace, 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,