From: fred Date: Mon, 20 Mar 2000 15:46:20 +0000 (+0000) Subject: lilypond-1.3.38 X-Git-Tag: release/1.5.59~5746 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e7243c50ac92d4845f0a84c0cbe8cd9b2db08133;p=lilypond.git lilypond-1.3.38 --- diff --git a/Documentation/regression-test.tely b/Documentation/regression-test.tely index 082a1205ad..0a4cd198cf 100644 --- a/Documentation/regression-test.tely +++ b/Documentation/regression-test.tely @@ -183,6 +183,13 @@ centered in the gap in the bracket. @mudelafile{tup.ly} +@section Property details + +More specific settings take precendence over less specific settings. The +second slur has slurDirection set to down, overriding the stemup setting. + +@mudelafile{generic-property-override.ly} + @section Repeats LilyPond has three modes for repeats: folded, unfolded and diff --git a/input/test/generic-property-override.ly b/input/test/generic-property-override.ly new file mode 100644 index 0000000000..4f8c7bb807 --- /dev/null +++ b/input/test/generic-property-override.ly @@ -0,0 +1,10 @@ + +\score { + \notes \relative c'' \context Voice { + \stemup + c'4 () c4 + \slurdown + c4 ( )c4 + } + \paper { linewidth = -1.0; } +}