Hi all,
Here's a patch to fix the problem that empty HaraKiriStaffs
get a vertical spacing if you set StaffVerticalExtent or
StaffMinimumVerticalExtent.
The copyright header field doesn't work anymore and if you
use the footer field, you get the copyright notice on every
page. Should I reintroduce some support for the copyright field
and where should it then be placed? Maybe the placement at
the bottom of the first page is the best after all.
Chris, do you have any special preferences for the use in
Mutopia?
/Mats
-----------------------------------
Generated by (address unknown),
>From = lilypond-1.3.41, To = lilypond-1.3.41.mb1
usage
cd lilypond-source-dir; patch -E -p1 < lilypond-1.3.41.mb1.diff
Patches do not contain automatically generated files
or (urg) empty directories,
i.e., you should rerun autoconf, configure
diff -urN ../lilypond-1.3.41/CHANGES ./CHANGES
--- ../lilypond-1.3.41/CHANGES Thu Mar 30 11:05:01 2000
+++ ./CHANGES Sat Apr 1 20:35:51 2000
@@ -1,3 +1,8 @@
+1.3.41.mb1
+
+* Avoid that xxxXXXVerticalExtent is used for empty HaraKiriStaff
+ lines.
+
1.3.40.jcn3
===========
diff -urN ../lilypond-1.3.41/VERSION ./VERSION
--- ../lilypond-1.3.41/VERSION Thu Mar 30 14:19:49 2000
+++ ./VERSION Sat Apr 1 20:35:58 2000
@@ -2,7 +2,7 @@
MAJOR_VERSION=1
MINOR_VERSION=3
PATCH_LEVEL=41
-MY_PATCH_LEVEL=
+MY_PATCH_LEVEL=mb1
# use the above to send patches: MY_PATCH_LEVEL is always empty for a
# released version.
diff -urN ../lilypond-1.3.41/lily/score-element.cc ./lily/score-element.cc
--- ../lilypond-1.3.41/lily/score-element.cc Thu Mar 30 10:46:33 2000
+++ ./lily/score-element.cc Sat Apr 1 10:24:30 2000
@@ -512,7 +512,9 @@
Dimension_cache const * d = dim_cache_[a];
Interval ext = d->get_dim ();
-
+ if (empty_b (a))
+ return ext;
+
SCM extra = get_elt_property (a == X_AXIS ? "extra-extent-X"
: "extra-extent-Y");