X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmensural-ligature.cc;h=a36f1b17239386c35421129dff891a4f6bfbb111;hb=9f3572d98bb948c9689cd1f75401a029451fa001;hp=936f64b877b90d965d8c4d4ab860d9ca10463389;hpb=04265f11d1f21416ccebd2dcaa1d903dc781b36e;p=lilypond.git diff --git a/lily/mensural-ligature.cc b/lily/mensural-ligature.cc index 936f64b877..a36f1b1723 100644 --- a/lily/mensural-ligature.cc +++ b/lily/mensural-ligature.cc @@ -110,7 +110,7 @@ internal_brew_primitive (Grob *me) if (primitive & MLP_FLEXA) { - delta_pitch = robust_scm2int (me->get_property ("delta-position"), + delta_pitch = robust_scm2int (me->get_property ("delta-pitch"), 0); width = robust_scm2double (me->get_property ("flexa-width"), 2.0 * staff_space); @@ -167,7 +167,7 @@ internal_brew_primitive (Grob *me) SCM join_right_scm = me->get_property ("join-right-amount"); - if (scm_is_pair (join_right_scm)) + if (join_right_scm != SCM_EOL) { int join_right = scm_to_int (join_right_scm); if (join_right) @@ -221,12 +221,5 @@ Mensural_ligature::print (SCM) ADD_INTERFACE (Mensural_ligature, "mensural-ligature-interface", "A mensural ligature", - - "delta-position " - "flexa-width " - "head-width " - "join-right-amount " - "primitive " - "thickness" - ); - + "delta-pitch flexa-width head-width join-right-amount " // "add-join " + "primitive thickness");