]> git.donarmstrong.com Git - lilypond.git/commitdiff
convert-ly rule
authorKeith OHara <k-ohara5a5a@oco.net>
Mon, 16 Sep 2013 05:33:35 +0000 (22:33 -0700)
committerKeith OHara <k-ohara5a5a@oco.net>
Sat, 21 Sep 2013 17:27:09 +0000 (10:27 -0700)
python/convertrules.py

index fbc683330dce81993605c8a143ede83e7cb6def8..1ab911cca2c3f576f103e3eeee8566bfcd0bc481 100644 (file)
@@ -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)