From 9edda45c95b4bf40906da54f2ac0ef886bd8d505 Mon Sep 17 00:00:00 2001 From: Keith OHara Date: Sun, 15 Sep 2013 22:33:35 -0700 Subject: [PATCH] convert-ly rule --- python/convertrules.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/convertrules.py b/python/convertrules.py index fbc683330d..1ab911cca2 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -3667,6 +3667,9 @@ def conv(str): def conv(str): str = re.sub (r"\\stringTuning\s*\\notemode(\s*)@?\{\s*(.*?)\s*@?}", r"\\stringTuning\1\2", str) + if re.search (r'\bstaff-padding\b', str): + stderr_write (NOT_SMART % "staff-padding") + stderr_write (_ ("Staff-padding now controls the distance to the baseline, not the nearest point.")) return str # Guidelines to write rules (please keep this at the end of this file) -- 2.39.5