]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/convert-ly.py
text empty
[lilypond.git] / scripts / convert-ly.py
index 073e0ecd972d9babe5dea50cc80b43b89a817943..c05e3e0f61424310ad743f52f7f3b4c531ab1216 100644 (file)
@@ -857,6 +857,15 @@ if 1:
        
        conversions.append (((1,5,56), conv, 'Pitch::transpose->ly-transpose-pitch'))
 
+if 1:
+       def conv (str):
+               str = re.sub ('textNonEmpty *= *##t', "TextScript \\set #'no-spacing-rods = ##f", str)
+               str = re.sub ('textNonEmpty *= *##f', "TextScript \\set #'no-spacing-rods = ##t", str)
+               return str
+       
+       conversions.append (((1,5,58), conv, 'deprecate textNonEmpty'))
+
+
 ################################
 #      END OF CONVERSIONS      
 ################################