Sorry I get this error message:

 GUILE signalisierte einen Fehler für den hier beginnenden Ausdruck
#
(define-music-function (music) (ly:music?)

Perhaps it depends on my version… I have to update lilypond. music-function is 
complete new for me and very interesting! I have to learn a bit more by myself 
and spending more time on this :)
Thanks a lot for this quick answering!
Tobias

\version "2.19.15"

addGlissandi =
#(define-music-function (music) (ly:music?)
(music-map
(lambda (mus)
(if (music-is-of-type? mus 'event-chord)
(append! (ly:music-property mus 'elements)
(list (make-music 'GlissandoEvent))))
(if (music-is-of-type? mus 'note-event)
(set! (ly:music-property mus 'articulations)
(cons (make-music 'GlissandoEvent)
(ly:music-property mus 'articulations))))

mus)
music)
music)


Am 24.06.2016 um 09:18 schrieb Orm Finnendahl 
<orm.finnend...@selma.hfmdk-frankfurt.de>:

> Hi David,
> 
> Am Donnerstag, den 23. Juni 2016 um 20:55:50 Uhr (-0500) schrieb David
> Nalesnik:
>> I'm thinking I'm safe in betting that I've spent more time on this
>> than this will ever save you :)
> 
> true, but it clears up things for other users like me as well, so
> it's well invested ;-)
> 
> Thanks for sharing!
> 
> --
> Orm

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to