]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/slur-attachment-override.ly
*** empty log message ***
[lilypond.git] / input / test / slur-attachment-override.ly
index fe3a8679bff58eb7a4422fa476ccbfc70f37568d..beb8b492b0a45f13aa73c5628627455d9959cf7f 100644 (file)
@@ -1,22 +1,23 @@
 
-\version "1.9.1"
+\version "2.2.0"
 
 \header{
 texidoc="@cindex Slur Attachment Override
-In some cases you may want to set slur attachments by hand. "
+In some cases, you may want to control the attachment points of a slur 
+by hand. "
 }
 
 
 %%
-%% except that both slurs are stem <-> stem.
+%% except that both slurs are stem <<-> stem.
 %%
 
 fragment = \notes {
-  \property Voice.autoBeaming = ##f
-  \property Voice.Stem \set #'direction = #1
-  \property Voice.Slur \set #'direction = #1
+  \set autoBeaming = ##f
+  \override Stem  #'direction = #1
+  \override Slur  #'direction = #1
   d'32( f'4  d8..)
-  \property Voice.Slur \set #'attachment = #'(stem . stem)
+  \override Slur  #'attachment = #'(stem . stem)
   d,32( f'4  d8.)
 }