]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/add-staccato.ly
Merge with git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond.git
[lilypond.git] / input / test / add-staccato.ly
index 3a8668c5b8e84da1c030105f0a69fbcf0ac8b6c3..aee898561d4f13f077d34f87337b390384aae8a8 100644 (file)
@@ -1,8 +1,7 @@
-
-\version "2.7.39"
+\version "2.10.0"
+\sourcefilename "add-staccato.ly"
 
 \header {
-
 texidoc= "@cindex Add Stacato
 Using @code{make-music}, you can add various stuff to notes. In this
 example staccato dots are added to the notes."
@@ -11,7 +10,7 @@ example staccato dots are added to the notes."
 #(define (make-script x)
    (make-music 'ArticulationEvent
                'articulation-type x))
-    
+
 #(define (add-script m x)
    (if
      (equal? (ly:music-property m 'name) 'EventChord)
@@ -23,11 +22,15 @@ example staccato dots are added to the notes."
 #(define (add-staccato m)
    (add-script m "staccato"))
 
+addStacc =
+#(define-music-function (parser location music) 
+                                       (ly:music?)
+               (music-map add-staccato music))    
+
 \score {
   \relative c'' {
-    a b \applyMusic #(lambda (x) (music-map add-staccato x)) { c c } 
+    a b \addStacc { c c } 
   }
   \layout{ ragged-right = ##t }
 }
 
-