lilypond-user
[Top][All Lists]
Advanced

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

Re: Accessing Grob properties


From: Urs Liska
Subject: Re: Accessing Grob properties
Date: Fri, 22 Jan 2016 20:37:31 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0


Am 22.01.2016 um 20:29 schrieb Urs Liska:
>   beaming_options_.subdivided_beam_count_ =
>     (scm_eqv_p (ly_symbol2scm("one"), ly_symbol2scm("one")))
>             ? ONE
>             : (scm_eqv_p (subdiv_beam_count_prop,
> ly_symbol2scm("base-moment")))
>                 ? BASE_MOMENT
>                 : METRIC;

Oops, that was the wrong test version, originally it was

  beaming_options_.subdivided_beam_count_ =
    (scm_eqv_p (beam_count_prop, ly_symbol2scm("one")))
            ? ONE
            : (scm_eqv_p (subdiv_beam_count_prop,
ly_symbol2scm("base-moment")))
                ? BASE_MOMENT
                : METRIC;

but the result is the same: no matter what beam_count_prop seems to
hold, the result is always ONE.



reply via email to

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