]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tie-chord.ly
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / input / regression / tie-chord.ly
index fd1ce2b32865367211bda4943b0d84fd90109689..d131301b7952d5fcb985033252526fa69b705c20 100644 (file)
@@ -1,22 +1,22 @@
-#(ly:set-option 'old-relative)
-\version "1.9.1"
+
+\version "2.3.22"
 \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 slurs point outwards, the inner slurs
+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
 
   }