]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/convertrules.py
Remove oldaddlyrics; contributed by Ian Hulin
[lilypond.git] / python / convertrules.py
index 737345538670cfb6680f7ef13edebfda5193c715..0dc024871924b8f1855a80dcb05ed83c7c49d6aa 100644 (file)
@@ -2870,6 +2870,17 @@ chord-shape call.\n"))
         raise FatalConversionError ()
     return str
 
+@rule ((2,12,3),
+    _ ("Remove oldaddlyrics")
+def conv(str):
+    if re.search(r'\\oldaddlyrics', str):
+        stderr_write ("\n")
+        stderr_write (NOT_SMART % _("oldaddlyrics is no longer supported. \n \
+        Use addlyrics or lyrsicsto instead.\n"))
+        stderr_write (UPDATE_MANUALLY)
+        raise FatalConversionError ()
+    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,