]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tie-chord.ly
*** empty log message ***
[lilypond.git] / input / regression / tie-chord.ly
index c7dabf030fd3e20baac000f8ee8d3bf02c128e37..90be1c855489770ba78c8776b7b231dc5e7b8ad3 100644 (file)
@@ -1,22 +1,22 @@
 
-\version "1.9.8"
+\version "2.4.0"
 \header{
 texidoc="
-When tieing chords, the outer slurs point outwards, the inner slurs
-point away from the center of the staff.  Override with
-@code{tieVerticalDirection}.
+When tying chords, the outer ties point outwards, the inner ties
+point away from the center of the staff. The behavior can be overridden 
+by setting explicitly the @code{direction} of a @code{TieColumn}.
 "
 }
 
 
-t =  \notes \relative c' {   <c e g> ~ <c e g> }
+t =  \relative c' {   <c e g> ~ <c e g> }
 
        \score { 
-\notes \context Voice {
+ \context Voice {
    \t
    \transpose c g \t
 
-   \property Voice.TieColumn \override #'direction = #-1
+   \override TieColumn  #'direction = #-1
    \t
 
   }