From: gpercival Date: Mon, 10 Apr 2006 03:57:38 +0000 (+0000) Subject: Backport fix for old \property docs. X-Git-Tag: release/2.8.2~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0c505493d37d5752ed0e253d63ac8856d75512da;p=lilypond.git Backport fix for old \property docs. --- diff --git a/ChangeLog b/ChangeLog index 6f777f03b7..243da05448 100644 --- 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 * scripts/lilypond-book.py diff --git a/scm/define-context-properties.scm b/scm/define-context-properties.scm index 5a86c38dd9..293d6bc4bc 100644 --- a/scm/define-context-properties.scm +++ b/scm/define-context-properties.scm @@ -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 .")