]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.38
authorfred <fred>
Mon, 20 Mar 2000 15:46:20 +0000 (15:46 +0000)
committerfred <fred>
Mon, 20 Mar 2000 15:46:20 +0000 (15:46 +0000)
Documentation/regression-test.tely
input/test/generic-property-override.ly [new file with mode: 0644]

index 082a1205ad6d40e0b4c44d807e2a5b3ed3e7c148..0a4cd198cfc112b623cacbd8c008e6cdf2fc7ccb 100644 (file)
@@ -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 (file)
index 0000000..4f8c7bb
--- /dev/null
@@ -0,0 +1,10 @@
+
+\score {
+ \notes \relative c'' \context Voice {
+       \stemup
+       c'4 () c4 
+       \slurdown
+       c4 ( )c4 
+ }
+ \paper { linewidth = -1.0; }
+}