X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmensural-ligature.cc;h=e4901a4eca96fa63c212d5be5f05dc0b59c012b8;hb=9ae52034113dcfbbc98fd7a0f8075ca3ea2cf3c9;hp=c327da0b551d3c7455302b5db73e1d20c7c58fca;hpb=974f574a4b5400c1f7a8a7d8b353291e8c2c5f59;p=lilypond.git diff --git a/lily/mensural-ligature.cc b/lily/mensural-ligature.cc index c327da0b55..e4901a4eca 100644 --- a/lily/mensural-ligature.cc +++ b/lily/mensural-ligature.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2006 Juergen Reuter , + (c) 2002--2007 Juergen Reuter , Pal Benko */ @@ -96,7 +96,7 @@ internal_brew_primitive (Grob *me) { programming_error ("Mensural_ligature: " "undefined primitive -> ignoring grob"); - return Stencil (); + return Lookup::blank (Box (Interval (0, 0), Interval (0, 0))); } int primitive = scm_to_int (primitive_scm); @@ -121,18 +121,18 @@ internal_brew_primitive (Grob *me) switch (primitive & MLP_ANY) { case MLP_NONE: - return Stencil (); + return Lookup::blank (Box (Interval (0, 0), Interval (0, 0))); case MLP_LONGA: // mensural brevis head with right cauda out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-2mensural"); + ("noteheads.sM2mensural"); break; case MLP_BREVIS: // mensural brevis head out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-1mensural"); + ("noteheads.sM1mensural"); break; case MLP_MAXIMA: // should be mensural maxima head without stem out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-1neomensural"); + ("noteheads.sM1neomensural"); break; case MLP_FLEXA: out = brew_flexa (me, delta_pitch, false, width, thickness); @@ -140,7 +140,7 @@ internal_brew_primitive (Grob *me) default: programming_error (_f ("Mensural_ligature: " "unexpected case fall-through")); - return Stencil (); + return Lookup::blank (Box (Interval (0, 0), Interval (0, 0))); } Real blotdiameter @@ -167,7 +167,7 @@ internal_brew_primitive (Grob *me) SCM join_right_scm = me->get_property ("join-right-amount"); - if (join_right_scm != SCM_EOL) + if (scm_is_number (join_right_scm)) { int join_right = scm_to_int (join_right_scm); if (join_right) @@ -219,14 +219,15 @@ Mensural_ligature::print (SCM) return SCM_EOL; } -ADD_INTERFACE (Mensural_ligature, "mensural-ligature-interface", - "A mensural ligature", +ADD_INTERFACE (Mensural_ligature, + "A mensural ligature.", + /* properties */ "delta-position " "flexa-width " "head-width " "join-right-amount " "primitive " - "thickness" + "thickness " );