]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tweaks-as-overrides.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / tweaks-as-overrides.ly
index 7bece45db897251658c8167ffd93a2b3a7f6070c..bcd1680b906403393de91f93974b2b83a1533fbe 100644 (file)
@@ -1,18 +1,18 @@
-\version "2.19.24"
+\version "2.19.36"
 
 \header {
-  texidoc = "@code{\\tweak} commands can be used to effect overrides
-when given a symbol list as argument.  Such overrides can be the
-target of another tweak, with the tweaks accumulating.  This example
-should show the starting chord with blue, cross-styled note heads
-and a red stem."
+  texidoc = "Overrides can be the target of a @code{\\propertyTweak}, with the
+tweaks accumulating as override.  The main application is for stacking
+commands implemented in terms of @code{\\propertyTweak}.  This example
+should show the starting chord with blue, cross-styled note heads and
+a red stem."
 }
 
 \layout { ragged-right = ##t }
 
 {
-  \once \tweak Stem.color #red
-  \tweak color #blue
-  \tweak style #'cross NoteHead
+  \once \propertyTweak Stem.color #red
+  \propertyTweak color #blue
+  \override NoteHead.style = #'cross
   <c' e'>2 c'2
 }