diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2000-05-31 10:26:37 +0200 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2000-05-31 10:26:37 +0200 |
commit | 0349917b7d91f01c8e5a3461185c850820e51710 (patch) | |
tree | b5d833280ebccdf84cdfcd3af2cc5678f3a77cfb /lily/paper-column.cc | |
parent | 91bf0ea3bb2f298fff46e7ac04ae4b04480d17dc (diff) |
release: 1.3.57
======
* Fixed several forgotten molecule-callbacks
* Fixed first clef in score; now F clefs are also possible.
1.3.56.
Diffstat (limited to 'lily/paper-column.cc')
-rw-r--r-- | lily/paper-column.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lily/paper-column.cc b/lily/paper-column.cc index f7db1474a2..d38687e4f1 100644 --- a/lily/paper-column.cc +++ b/lily/paper-column.cc @@ -95,7 +95,7 @@ Paper_column::column_l () const } Paper_column::Paper_column (Moment w) - : Item (SCM_EOL) + : Item (SCM_EOL) // guh.? { SCM when = (new Moment (w))->smobify_self (); scm_unprotect_object (when); @@ -103,7 +103,7 @@ Paper_column::Paper_column (Moment w) Axis_group_interface (this).set_interface (); Axis_group_interface (this).set_axes (X_AXIS, X_AXIS); - + set_elt_pointer ("bounded-by-me", SCM_EOL); line_l_=0; rank_i_ = -1; } @@ -135,5 +135,7 @@ Paper_column::musical_b () const bool Paper_column::used_b ()const { - return gh_pair_p (get_elt_pointer ("elements")) || breakable_b (); + return gh_pair_p (get_elt_pointer ("elements")) || breakable_b () + || gh_pair_p (get_elt_pointer ("bounded-by-me")) + ; } |