Carl Peterson <[email protected]> writes:
> I've made a little bit of progress: I've changed the code to:
>
> #(define
> (make-my-scores parser location lyrics)
> (if (not (null? lyrics))
> #{ $(car lyrics)
> $(make-my-scores parser location (cdr lyrics))
> #}
> )
> )
Looks like you could just write
#(define (make-my-scores parser location lyrics)
#{ $@lyrics #})
here. Actually, it is already available as make-sequential-music...
--
David Kastrup
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user