]> git.donarmstrong.com Git - lilypond.git/commitdiff
Backport fix for old \property docs.
authorgpercival <gpercival>
Mon, 10 Apr 2006 03:57:38 +0000 (03:57 +0000)
committergpercival <gpercival>
Mon, 10 Apr 2006 03:57:38 +0000 (03:57 +0000)
ChangeLog
scm/define-context-properties.scm

index 6f777f03b7a4f4ca27c2ffbf8d63aaedd3842dbc..243da054486624a5d8f1ca58fc68dd1c7b080f2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
 
        * Documentation/user/*: backport doc changes from 2.9.
 
+       * scm/define-context-properties.scm: backport fix for
+       old \property stuff.
+
 2006-04-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * scripts/lilypond-book.py
index 5a86c38dd900e37c85227b3f4911483530366909..293d6bc4bc25c0a3493d7b2e5e9893be57660876 100644 (file)
@@ -343,9 +343,11 @@ with other voices is preserved.
 
 
 @example
-@@lilypond[fragment,verbatim,center]
-r1 r1*3 R1*3 \\\\property Score.skipBars= ##t r1*3 R1*3
-@@end lilypond
+@{
+r1 r1*3 R1*3
+\\set Score.skipBars= ##t
+r1*3 R1*3
+@}
 @end example
 ")
      (skipTypesetting ,boolean?
@@ -414,12 +416,10 @@ Normally a tuplet bracket is as wide as the
 property, you can make brackets last shorter.  Example
 
 @example
-@@lilypond[verbatim,fragment]
-context Voice \\times 2/3 @{
-  property Voice.tupletSpannerDuration = #(ly:make-moment 1 4)
-  c-[8 c c-] c-[ c c-]
+@{
+\\set tupletSpannerDuration = #(ly:make-moment 1 4)
+\\times 2/3 @{ c8 c c c c c @}
 @}
-@@end lilypond
 @end example
 .")