Re: Passing a parameter to Scheme

2022-10-29 Thread Thomas Morley
simply don't know how scopes and namespaces work in Scheme, and > thus how to define that parameter in a way that I can access it to tweak. > > Paul > > > From: Paul Hodges > To: lilypond-user > Sent: 29/10/2022 10:50 > Subject: Passing a parameter to Scheme

Re: Passing a parameter to Scheme

2022-10-29 Thread Aaron Hill
On 2022-10-29 2:50 am, Paul Hodges wrote: %% speak = {   \once \override Stem.stencil =     #(lambda (grob)        (let* ((x-parent (ly:grob-parent grob X))               (is-rest? (ly:grob? (ly:grob-object x-parent 'rest          (if is-rest?        

Re: Passing a parameter to Scheme

2022-10-29 Thread Paul Hodges
rameter in a way that I can access it to tweak. Paul From: Paul Hodges To: lilypond-user Sent: 29/10/2022 10:50 Subject: Passing a parameter to Scheme I am trying to make my first steps in actually modifying some Scheme.  I am using a procedure taken from the snippets repos

Passing a parameter to Scheme

2022-10-29 Thread Paul Hodges
I am trying to make my first steps in actually modifying some Scheme.  I am using a procedure taken from the snippets repository to add a cross to a stem (e.g. to indicate sprechgesang): %% speak = {   \once \override Stem.stencil =     #(lambda (grob)