]> git.donarmstrong.com Git - lilypond.git/commitdiff
Change input/regression/tweaks-as-overrides.ly to use explicit override last
authorDavid Kastrup <dak@gnu.org>
Sat, 1 Aug 2015 11:21:46 +0000 (13:21 +0200)
committerDavid Kastrup <dak@gnu.org>
Sat, 8 Aug 2015 07:38:08 +0000 (09:38 +0200)
input/regression/tweaks-as-overrides.ly

index 7bece45db897251658c8167ffd93a2b3a7f6070c..871a364fb30dbb417fc5e46d612d707d19a6f7fe 100644 (file)
@@ -1,11 +1,11 @@
-\version "2.19.24"
+\version "2.19.25"
 
 \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{\\tweak}, 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 }
@@ -13,6 +13,6 @@ and a red stem."
 {
   \once \tweak Stem.color #red
   \tweak color #blue
-  \tweak style #'cross NoteHead
+  \override NoteHead.style = #'cross
   <c' e'>2 c'2
 }