On Thu, Feb 21, 2013 at 3:02 AM, Colin Hall <[email protected]> wrote:
> > [email protected] writes: > > > If \alterBroken tries to set a property consulted before line breaking, > it results in the property having an incorrect value: > > > > For example... > > > > \relative c'' { > > \alterBroken #'direction #'(UP DOWN) Staff.DynamicLineSpanner > > %\override Staff.DynamicLineSpanner.direction = #UP %% no issues > > a\< \repeat unfold 38 a a\p > > } > > > > This doesn't fix the problem, but if you use variables like UP and DOWN or color names, etc., you need to quasiquote them: > \alterBroken #'direction #`(,UP ,DOWN) Staff.DynamicLineSpanner Either that, or use the numerical equivalents: > \alterBroken #'direction #'(1 -1) Staff.DynamicLineSpanner --David _______________________________________________ bug-lilypond mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-lilypond
