From e67fb56ae991b6c0b74898e3282a020f2014e6ea Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2002 00:02:06 +0000 Subject: [PATCH] lilypond-1.3.103 --- lily/mark-engraver.cc | 10 ---------- lily/staff-symbol-engraver.cc | 8 -------- lily/vertical-align-engraver.cc | 12 ------------ 3 files changed, 30 deletions(-) diff --git a/lily/mark-engraver.cc b/lily/mark-engraver.cc index bab3d1d145..7e76790d77 100644 --- a/lily/mark-engraver.cc +++ b/lily/mark-engraver.cc @@ -109,16 +109,6 @@ Mark_engraver::create_items (Request *rq) Side_position::set_axis (text_p_, Y_AXIS); - /* - -> Generic props. - */ - SCM prop = get_property ("markDirection"); - if (!isdir_b (prop)) - { - prop = gh_int2scm (UP); - } - text_p_->set_elt_property ("direction", prop); - announce_element (text_p_, rq); } diff --git a/lily/staff-symbol-engraver.cc b/lily/staff-symbol-engraver.cc index 37bfa33d6b..d3685bfbf5 100644 --- a/lily/staff-symbol-engraver.cc +++ b/lily/staff-symbol-engraver.cc @@ -54,14 +54,6 @@ Staff_symbol_engraver::do_creation_processing() void Staff_symbol_engraver::do_removal_processing() { - SCM n = get_property ("numberOfStaffLines"); - SCM ss = get_property ("staffSpace"); - - if (gh_number_p (ss)) - span_p_->set_elt_property ("staff-space", ss); - if (gh_number_p (n)) - span_p_->set_elt_property ("line-count", n); - span_p_->set_bound(RIGHT,unsmob_element (get_property ("currentCommandColumn"))); typeset_element (span_p_); span_p_ =0; diff --git a/lily/vertical-align-engraver.cc b/lily/vertical-align-engraver.cc index db986562af..9fa4ac78e5 100644 --- a/lily/vertical-align-engraver.cc +++ b/lily/vertical-align-engraver.cc @@ -42,18 +42,6 @@ Vertical_align_engraver::do_creation_processing() void Vertical_align_engraver::do_removal_processing() { - SCM min = get_property ("maxVerticalAlign"); - SCM max = get_property ("minVerticalAlign"); - - if (gh_number_p (min) || gh_number_p (max)) - { - min = gh_number_p (min) ? min : gh_double2scm (0.0); - max = gh_number_p (max) ? max : gh_double2scm (infinity_f); - - valign_p_->set_elt_property ("threshold", - gh_cons (min,max)); - } - valign_p_->set_bound(RIGHT,unsmob_element (get_property ("currentCommandColumn"))); typeset_element (valign_p_); valign_p_ =0; -- 2.39.5