bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: \alterBroken doesn't work for properties accessed before line breaki


From: David Nalesnik
Subject: Re: \alterBroken doesn't work for properties accessed before line breaking
Date: Thu, 21 Feb 2013 07:38:51 -0600

On Thu, Feb 21, 2013 at 3:02 AM, Colin Hall <address@hidden> wrote:

>
> address@hidden 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]