]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/grace-stems.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / grace-stems.ly
index 7315701faedb93d295dc25a72a470cbdd080f920..43eab6278b87b93b3beff21e6c7f08aa6a4acd06 100644 (file)
@@ -1,26 +1,24 @@
 
-\version "2.1.7"
+\version "2.12.0"
 \header{
-texidoc = "Here startGraceMusic should set no-stem-extend to true;
-the two grace beams should be the same here.
+  texidoc = "Here @code{startGraceMusic} should set @code{no-stem-extend} to 
+true; the two grace beams should be the same here.
 "
 }
 
 
-\score { 
-  \context Voice \notes\relative c {
-    \grace { 
-       f8[ e8] 
-      \property Voice.Stem \override #'no-stem-extend = ##t
-       f8[ e8] 
-      \property Voice.Stem \revert #'no-stem-extend
-    }
-    a4
-       
+\layout {
+  ragged-right = ##t
+}  
+
+\context Voice \relative c {
+  \grace { 
+    f8[ e8] 
+    \override Stem  #'no-stem-extend = ##t
+    f8[ e8] 
+    \revert Stem #'no-stem-extend
   }
-  \paper {
-    raggedright = ##t
-  }  
-  \midi { }
+  a4
+  
 }