]> git.donarmstrong.com Git - lilypond.git/commitdiff
tweaks-as-overrides regtest: fix oversight from issue 4533
authorDavid Kastrup <dak@gnu.org>
Wed, 13 Jan 2016 20:43:33 +0000 (21:43 +0100)
committerDavid Kastrup <dak@gnu.org>
Mon, 18 Jan 2016 16:20:17 +0000 (17:20 +0100)
input/regression/tweaks-as-overrides.ly

index 871a364fb30dbb417fc5e46d612d707d19a6f7fe..bcd1680b906403393de91f93974b2b83a1533fbe 100644 (file)
@@ -1,7 +1,7 @@
-\version "2.19.25"
+\version "2.19.36"
 
 \header {
-  texidoc = "Overrides can be the target of a @code{\\tweak}, with the
+  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
@@ -11,8 +11,8 @@ a red stem."
 \layout { ragged-right = ##t }
 
 {
-  \once \tweak Stem.color #red
-  \tweak color #blue
+  \once \propertyTweak Stem.color #red
+  \propertyTweak color #blue
   \override NoteHead.style = #'cross
   <c' e'>2 c'2
 }