]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/stem-extend.ly
more conversion for dash-change.
[lilypond.git] / input / test / stem-extend.ly
index 999b2bf425387261ad07fe7cca0d62939cfd9b88..58b95b7a0248ef006d79f1a9acb886a5bac1bed3 100644 (file)
@@ -1,25 +1,26 @@
-\version "2.1.7"
+\version "2.7.32"
 
 \header { texidoc = "@cindex Stem Extend
-You can stop LilyPond from extending stems to the center line. "
+Extending stems to the center line may be prevented using @code{no-stem-extend}.
+"
 }
 
 \score { 
-  \context Voice \notes\relative c {
+  \context Voice \relative c {
        \context Staff <<
                \new Voice { 
                        f2 f8 g a b 
-                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       \override Stem  #'no-stem-extend = ##t
                        f2 f8 g a b
                }
                \new Voice { 
                        c''2 c8 b a g
-                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       \override Stem  #'no-stem-extend = ##t
                        c2 c8 b a g
                }
        >>
        
   }
-  \paper { raggedright = ##t}  
+  \layout { ragged-right = ##t}  
 }