]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/add-staccato.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / test / add-staccato.ly
index 8392fcf2a93bdbb12d2de9bd7dc99519cab7ed4a..3a8668c5b8e84da1c030105f0a69fbcf0ac8b6c3 100644 (file)
@@ -1,36 +1,33 @@
 
-\version "1.9.2"
+\version "2.7.39"
 
 \header {
 
 texidoc= "@cindex Add Stacato
-Using make-music, you can add various stuff to notes. Here
-is an example how to add staccato dots.  Note: for this simple case
-one would not use scm constructs.  See separate-staccato.ly first.
-"
+Using @code{make-music}, you can add various stuff to notes. In this
+example staccato dots are added to the notes."
 } 
 
 #(define (make-script x)
-   (let ((m (make-music-by-name 'ArticulationEvent)))
-     (ly:set-mus-property! m 'articulation-type x)
-     m))
+   (make-music 'ArticulationEvent
+               'articulation-type x))
     
 #(define (add-script m x)
    (if
-    (equal? (ly:get-mus-property m 'name) 'EventChord)
-    (ly:set-mus-property! m 'elements
-                         (cons (make-script x)
-                               (ly:get-mus-property m 'elements))))
+     (equal? (ly:music-property m 'name) 'EventChord)
+     (set! (ly:music-property m 'elements)
+           (cons (make-script x)
+                 (ly:music-property m 'elements))))
    m)
 
 #(define (add-staccato m)
    (add-script m "staccato"))
 
 \score {
-  \notes\relative c'' {
-    a b \apply #(lambda (x) (music-map add-staccato x)) { c c } 
+  \relative c'' {
+    a b \applyMusic #(lambda (x) (music-map add-staccato x)) { c c } 
   }
-  \paper{ raggedright = ##t }
+  \layout{ ragged-right = ##t }
 }