Andrea Rossato <[EMAIL PROTECTED]> writes: > I get: > > prova.ly:8:8: In expression (accidental->markup (ly:pitch-alteration > pitch)): > prova.ly:8:8: Unbound variable: accidental->markup > > The very same function in chord-name.scm works perfectly. > I'm I missing something?
Ok sorry. That's because `accidental->markup' is not exported from the module where it is defined, ie (lily). You can do #(define-module (lily)) #(export accidental->markup) #(define-module (*anonymous-ly-0*)) at the beginning of your file, or alternatively, copy and paste the `accidental->markup' definition from scm/accidental->markup to your input file. nicolas _______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
