Re: Parameterizing a LilyPond function

2012-12-03 Thread PMA
David Kastrup wrote: PMA writes: David& David, Thank you Both! I'm using the one-param version, as in this score my X& Y offsets always match. But on exec -- uh oh -- Scheme is yelling: :2:65: error: GUILE signaled an error for the expression beginning here \once \override Gli

Re: Parameterizing a LilyPond function

2012-12-03 Thread David Kastrup
PMA writes: > David & David, > > Thank you Both! > > I'm using the one-param version, as in this score my X & Y offsets > always match. > But on exec -- uh oh -- Scheme is yelling: > >:2:65: error: GUILE signaled an error for the expression > beginning here >\once \override Glissando

Re: Parameterizing a LilyPond function

2012-12-02 Thread PMA
You're right, man: working dory-hunky! I promise to upgrade *BTWN* projects. Thanks again, Pete David Nalesnik wrote: Hi Peter, On Sun, Dec 2, 2012 at 5:00 PM, PMA wrote: David& David, Thank you Both! I'm using the one-param version, as in this score my X& Y offsets always match. But o

Re: Parameterizing a LilyPond function

2012-12-02 Thread David Nalesnik
Hi Peter, On Sun, Dec 2, 2012 at 5:00 PM, PMA wrote: > David & David, > > Thank you Both! > > I'm using the one-param version, as in this score my X & Y offsets always > match. > But on exec -- uh oh -- Scheme is yelling: > >:2:65: error: GUILE signaled an error for the expression > beginning

Re: Parameterizing a LilyPond function

2012-12-02 Thread PMA
David & David, Thank you Both! I'm using the one-param version, as in this score my X & Y offsets always match. But on exec -- uh oh -- Scheme is yelling: :2:65: error: GUILE signaled an error for the expression beginning here \once \override Glissando #(quote (bound-details left

Re: Parameterizing a LilyPond function

2012-12-02 Thread David Kastrup
PMA writes: > Hi List. > > I would like to alter this function... > > glissmove = { > \once \override Glissando #'(bound-details left Y) = #1.3 > \once \override Glissando #'(bound-details right Y) = #1.3 > } > > to accept its 1.3 or whatever as an input parameter instead. > > I see docs on p

Re: Parameterizing a LilyPond function

2012-12-02 Thread David Nalesnik
Hi Peter, On Sun, Dec 2, 2012 at 2:36 PM, PMA wrote: > Hi List. > > I would like to alter this function... > > glissmove = { > \once \override Glissando #'(bound-details left Y) = #1.3 > \once \override Glissando #'(bound-details right Y) = #1.3 > } > > to accept its 1.3 or whatever as an inp

Parameterizing a LilyPond function

2012-12-02 Thread PMA
Hi List. I would like to alter this function... glissmove = { \once \override Glissando #'(bound-details left Y) = #1.3 \once \override Glissando #'(bound-details right Y) = #1.3 } to accept its 1.3 or whatever as an input parameter instead. I see docs on parameterizing Scheme functions, b