From: Phil Holmes Date: Sat, 15 Dec 2012 13:05:09 +0000 (+0000) Subject: LSR updates X-Git-Tag: release/2.17.9-1~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=12ac196d35f4a9efac1aebfc4dceb074731483cb;p=lilypond.git LSR updates --- diff --git a/Documentation/snippets/generating-whole-scores-also-book-parts-in-scheme-without-using-the-parser.ly b/Documentation/snippets/generating-whole-scores-also-book-parts-in-scheme-without-using-the-parser.ly index ab86d89339..c2182e123a 100644 --- a/Documentation/snippets/generating-whole-scores-also-book-parts-in-scheme-without-using-the-parser.ly +++ b/Documentation/snippets/generating-whole-scores-also-book-parts-in-scheme-without-using-the-parser.ly @@ -98,8 +98,9 @@ modified to inser all collected scores so far to the book. (set! pitch (modulo (1+ pitch) 7))))) oneNoteScore = -#(define-void-function (parser location) () - (add-one-note-score parser)) +#(define-music-function (parser location) () + (add-one-note-score parser) + (make-music 'Music 'void #t)) %%%