X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=python%2Fconvertrules.py;h=6c379dae9ec203cac3745fc80f0e240991bbaf60;hb=3bafaae8bf353619d2f97036e874f1c9cb787adf;hp=f86165c477abb953ba32da9186146831e7c4a33d;hpb=581c7ab6260e3b3f9b92033b4363efcebdd04ab3;p=lilypond.git diff --git a/python/convertrules.py b/python/convertrules.py index f86165c477..6c379dae9e 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -2820,7 +2820,7 @@ def conv (str): @rule ((2, 11, 62), "makam-init.ly -> makam.ly, \\bigger -> \\larger") def conv (str): str = re.sub (r'\\include(\s+)"makam-init.ly"', r'\\include\1"makam.ly"', str) - str = re.sub (r"\\bigger", r"\\larger", str) + str = re.sub (r"([\\:])bigger", r"\1larger", str) return str @rule ((2, 11, 64), "systemSeparatorMarkup -> system-separator-markup,\n\ @@ -2860,6 +2860,10 @@ chord-shape call.\n")) raise FatalConversionError () return str +@rule ((2, 12, 0), _ ("bump version for release")) +def conv (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,