]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
new file, move from
[lilypond.git] / scripts / convert-ly.py
index 22ffd43048e2b8a9e326be9dd0d4c1957e0804d3..83035a911af8490748abb87a6132c1543a0addc9 100644 (file)
@@ -2097,7 +2097,10 @@ def conv (str):
                else:
                        return m.group (0)
                
-       return re.sub (r'\\([a-zA-Z]+)Context\b', func, str)
+       str = re.sub (r'\\([a-zA-Z]+)Context\b', func, str)
+
+       str = re.sub ('ly:paper-lookup', 'ly:output-def-lookup', str)
+       return str
 
 conversions.append (((2, 3, 2), conv,
                     '''\\FooContext -> \\Foo'''))