From: fred Date: Tue, 26 Mar 2002 22:43:20 +0000 (+0000) Subject: lilypond-1.3.5 X-Git-Tag: release/1.5.59~1994 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=26485b1563065003d64a7c9fffef26ca5bbb9ee6;p=lilypond.git lilypond-1.3.5 --- diff --git a/input/test/allfontstyle.ly b/input/test/allfontstyle.ly index aae8b05cd7..f463eefda3 100644 --- a/input/test/allfontstyle.ly +++ b/input/test/allfontstyle.ly @@ -3,7 +3,7 @@ \score { \notes \relative c'' \context Staff { - \property Staff.textEmptyDimension = "1" + \emptyText \repeat "semi" 2 { \time 4/4; c4^"cuivr\\'e"_\fermata } \alternative { { \property Voice.textStyle = "italic" d-4_"cantabile" } diff --git a/input/test/auto-beam-4-8.ly b/input/test/auto-beam-4-8.ly index c10e2464d1..5292a25354 100644 --- a/input/test/auto-beam-4-8.ly +++ b/input/test/auto-beam-4-8.ly @@ -17,7 +17,7 @@ | | | |--| x| x| x| x| x| %} - \property Voice.beamAutoEnd = "2/4" + \property Voice.beamAutoEnd = #(make-moment 2 4) c8 c c c16 c } diff --git a/input/test/auto-beam-override.ly b/input/test/auto-beam-override.ly index ad378a5837..ba6d5dcc4d 100644 --- a/input/test/auto-beam-override.ly +++ b/input/test/auto-beam-override.ly @@ -17,7 +17,7 @@ c8 c c c c16 c c c c c c c % from here on consider ending beam every 1/4 note - \property Voice.beamAutoEnd = "1/4" + \property Voice.beamAutoEnd = #(make-moment 1 4) c8 c c c % manually override autobeam with weird beaming c8 [c c] c @@ -25,7 +25,7 @@ c8 c c4 r8 c c c % no autobeaming - \property Voice.beamAuto = "0" + \property Voice.beamAuto = #f c8 c c c } \paper{ diff --git a/input/test/bar-number.ly b/input/test/bar-number.ly index aa8dd849eb..731be52469 100644 --- a/input/test/bar-number.ly +++ b/input/test/bar-number.ly @@ -2,7 +2,7 @@ c1 c1 c1 c1\break c1 c1 c1 c1\break - \property Score.currentBarNumber = "25" + \property Score.currentBarNumber = 25 c1 c1 c1 c1 } \paper{ \translator {\BarNumberingStaffContext }}} diff --git a/input/test/beam-urg.ly b/input/test/beam-urg.ly index 681389210d..ba7bf68498 100644 --- a/input/test/beam-urg.ly +++ b/input/test/beam-urg.ly @@ -1,8 +1,8 @@ \score{ \notes\relative c''{ - \property Score.beamquantisation = \none - % \property Score.beamquantisation = \normal - % \property Score.beamquantisation = \traditional + \property Score.beamQuantisation = #'none + % \property Score.beamQuantisation = #'normal + % \property Score.beamQuantisation = #'traditional [g16 e f g] } \paper{ diff --git a/input/test/coda-kludge.ly b/input/test/coda-kludge.ly index 2dab828183..80920b1240 100644 --- a/input/test/coda-kludge.ly +++ b/input/test/coda-kludge.ly @@ -31,7 +31,7 @@ Hi, \context Staff \notes\relative c''{ c c c c % coda-klugde: let volta span only one bar - \property Staff.voltaSpannerDuration = "1" + \property Staff.voltaSpannerDuration = #(make-moment 1 1) \repeat semi 5 { d d d d } \alternative { { e e e e f f f f } { g g g g } } diff --git a/input/test/force-hshift.fly b/input/test/force-hshift.fly index 06c92d55fe..c4849588c6 100644 --- a/input/test/force-hshift.fly +++ b/input/test/force-hshift.fly @@ -12,7 +12,7 @@ %\stemdown \shifton \property Voice.verticalDirection=-1 \property Voice.horizontalNoteShift=1 - \property Voice.forceHorizontalShift = "-0.1" + \property Voice.forceHorizontalShift = #-0.1 } > diff --git a/input/test/hshift.fly b/input/test/hshift.fly index b6ea8f09c4..a6ea6b9de6 100644 --- a/input/test/hshift.fly +++ b/input/test/hshift.fly @@ -1,10 +1,10 @@ \context Staff < - \context Voice =VA {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "0" g'' } - \context Voice =VB {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "1" e } - \context Voice =VC {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "2" c } - \context Voice =VD {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "3" a } - \context Voice =VE {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "4" f } + \context Voice =VA {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 0 g'' } + \context Voice =VB {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 1 e } + \context Voice =VC {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 2 c } + \context Voice =VD {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 3 a } + \context Voice =VE {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 4 f } > diff --git a/input/test/multi-measure-rest.ly b/input/test/multi-measure-rest.ly index 696b9bad5b..57b51f116a 100644 --- a/input/test/multi-measure-rest.ly +++ b/input/test/multi-measure-rest.ly @@ -1,7 +1,10 @@ \score { \notes { \time 3/4; \key cis; R2.*5 R2. R2.*5 } \paper { - \translator { \ScoreContext skipBars = 1; } + \translator { + \ScoreContext + skipBars = ##t + } linewidth = -1.; } } diff --git a/input/test/no-stem-extend.fly b/input/test/no-stem-extend.fly index 35ef31eac4..9b0cd4570a 100644 --- a/input/test/no-stem-extend.fly +++ b/input/test/no-stem-extend.fly @@ -2,12 +2,12 @@ \context Staff < \context Voice = "a" { f2 f8 g a b - \property Voice.noStemExtend = 1 + \property Voice.noStemExtend = ##t f2 f8 g a b } \context Voice = "b" { c''2 c8 b a g - \property Voice.noStemExtend = 1 + \property Voice.noStemExtend = ##t c2 c8 b a g } > diff --git a/input/test/orchestalpart.ly b/input/test/orchestalpart.ly index 76916287b6..e36598c3d9 100644 --- a/input/test/orchestalpart.ly +++ b/input/test/orchestalpart.ly @@ -1,7 +1,7 @@ \score { - \notes { c1 c1 \property Score.skipBars = 1 c1 \break R1*8 c1 c1 c1 c1 + \notes { c1 c1 \property Score.skipBars = ##t c1 \break R1*8 c1 c1 c1 c1 } \paper { diff --git a/input/test/perform-grace.fly b/input/test/perform-grace.fly index c24ded8cb8..1927d3f3a4 100644 --- a/input/test/perform-grace.fly +++ b/input/test/perform-grace.fly @@ -1,5 +1,5 @@ \context Voice=VoiceOne -\property Voice.graceFraction = "1/4" +\property Voice.graceFraction = #(make-moment 1 4) \grace c8 d4 d d d d -\property Voice.graceFraction = "1/2" +\property Voice.graceFraction = #(make-moment 1 2) \grace { e16 f e f } d4 d d d d diff --git a/input/test/rests.fly b/input/test/rests.fly index d01cc5bcd5..b1a6fb6419 100644 --- a/input/test/rests.fly +++ b/input/test/rests.fly @@ -1,5 +1,5 @@ r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 r128 \property Staff.restStyle = "mensural" -\property Staff.textEmptyDimension = 1 +\emptyText r\longa^"restStyle = \"mensural\"" r\breve r1 r2 r4 r8 r16 r32 r64 r128 r128 diff --git a/input/test/sizes.fly b/input/test/sizes.fly index 00923366a4..78258d2dc6 100644 --- a/input/test/sizes.fly +++ b/input/test/sizes.fly @@ -2,9 +2,9 @@ c'4 c4 -\property Voice.fontsize= "-2" +\property Voice.fontsize= -2 b16 * 1 / 2 ( -\property Voice.fontsize= "0" ) +\property Voice.fontsize= 0 ) g4 *31/32 a a g2