]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/no-notation/midi-grace.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / midi-grace.ly
index 1e287f65d85328e096a720ba8cb7ed5596b1c967..108b03b2f09398467b0d48738533754f0fc6f246 100644 (file)
@@ -1,15 +1,23 @@
 #(ly:set-option 'old-relative)
-\version "1.9.1"
+\version "2.10.0"
 \header{ texidoc = "Tests MIDI output with grace notes. " }
 
 \score { 
-  \context Voice \notes\relative c {
-    \context Voice=VoiceOne
-       \grace c8 d4 d d d d
-       \grace { e16 f e f } d4 d d d d 
+  \context Voice \relative c {
+    \new Voice = VoiceOne
+       \grace {
+  \override Stem  #'stroke-style = #"grace"
+   c8 
+  \revert Stem #'stroke-style }
+ d4 d d d d
+       \grace {
+  \override Stem  #'stroke-style = #"grace"
+   e16 f e f 
+  \revert Stem #'stroke-style }
+ d4 d d d d 
        
   }
-  \paper { }  
+  \layout { }  
   \midi { }
 }