X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmusic-map.ly;h=661dc03511970f36156483fcb6bccfd1baeadc8b;hb=8a2669df6c35c51d577e73f81946be90352f4192;hp=3ab61a816867adf24cd3dcc648280304f23435ab;hpb=34eb783cd6b1af2fd7cf2c573ec9dc7e9d16e7f7;p=lilypond.git diff --git a/input/regression/music-map.ly b/input/regression/music-map.ly index 3ab61a8168..661dc03511 100644 --- a/input/regression/music-map.ly +++ b/input/regression/music-map.ly @@ -1,41 +1,41 @@ \header { -texidoc = + texidoc = -"With @code{music-map}, you can apply functions operating on a single -piece of music to an entire music expression. In this example, the the -function @code{notes-to-skip} changes a note to a skip. When applied -to an entire music expression in the 1st measure, the scripts and -dynamics are left over. These are put onto the 2nd measure." + "With @code{music-map}, you can apply functions operating on a +single piece of music to an entire music expression. In this example, +the the function @code{notes-to-skip} changes a note to a skip. When +applied to an entire music expression in the 1st measure, the scripts +and dynamics are left over. These are put onto the 2nd measure." } -\version "2.6.0" +\version "2.12.0" #(define (notes-to-skip m) -"Convert all stuff with duration (notes, lyrics, bass figures, etc.) to skips. + "Convert all stuff with duration (notes, lyrics, bass figures, etc.) to skips. Scripts and dynamics are maintained. " (if (memq 'rhythmic-event (ly:music-property m 'types)) - (let* ((newmus (make-music 'SkipEvent))) - (map - (lambda (x) (ly:music-set-property! newmus (car x) (cdr x))) - (ly:music-mutable-properties m)) - newmus - ) - m) + (let* ((newmus (make-music 'SkipEvent))) + (map + (lambda (x) (ly:music-set-property! newmus (car x) (cdr x))) + (ly:music-mutable-properties m)) + newmus + ) + m) ) - \layout { raggedright= ##t } +\layout { ragged-right= ##t } foobar = \transpose c c' { c4\>-^ c4-^ c4\!-^ c4-^ } -\score { - \relative c'' \context Voice { - \foobar - << \applymusic #(lambda (x) (music-map notes-to-skip x)) - \foobar - { d2 d2 } >> -}} +\relative c'' \context Voice { + \foobar + + << \applyMusic #(lambda (x) (music-map notes-to-skip x)) + \foobar + { d8 d d d d d d d } >> +}