diff options
author | David Kastrup <dak@gnu.org> | 2014-08-24 13:21:59 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2014-08-24 13:21:59 +0200 |
commit | 7a249faa5b5c5225d3ff8f594096fcd4a873a6cc (patch) | |
tree | 822fa84b3767e87f68e97cb4425a56f89ba330d3 /python | |
parent | ff2ab19cbba5149e92584c6661a73ee63ccc45da (diff) |
Revert "Issue 4068: Add a convert-ly rule for xxx #'yyy #'zzz = -> xxx.yyy.zzz ="
This reverts commit 7f34e80b8d8bebfa4b1f3721a12718b04d7e02f4.
Diffstat (limited to 'python')
-rw-r--r-- | python/convertrules.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/python/convertrules.py b/python/convertrules.py index 7809041353..c506bc1542 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -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, |