X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrob-pq-engraver.cc;h=4f7208962b32bb8b0c8d64b5ed6743cce5a4c325;hb=ea1cd9ac0821fabc809e48f2b9390f26e6e90829;hp=856650300b06b869171fff477bf9d410b53d841b;hpb=1fc55f384b7be38162ff82b1eb86ca0449346f87;p=lilypond.git diff --git a/lily/grob-pq-engraver.cc b/lily/grob-pq-engraver.cc index 856650300b..4f7208962b 100644 --- a/lily/grob-pq-engraver.cc +++ b/lily/grob-pq-engraver.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2001--2002 Han-Wen Nienhuys + (c) 2001--2003 Han-Wen Nienhuys */ #include "translator-group.hh" @@ -62,7 +62,7 @@ Grob_pq_engraver::acknowledge_grob (Grob_info gi) if (m) { Moment n = now_mom (); - Moment l = m->length_mom (); + Moment l = m->get_length (); if (!l.to_bool ()) return ; @@ -78,7 +78,7 @@ Grob_pq_engraver::acknowledge_grob (Grob_info gi) } LY_DEFINE(ly_grob_pq_less_p, - "ly-grob-pq-less?", 2 , 0 ,0, (SCM a, SCM b), + "ly:grob-pq-less?", 2 , 0 ,0, (SCM a, SCM b), "Compare 2 Grob PQ entries. Internal") { if ( Moment::compare (*unsmob_moment (gh_car (a)), @@ -139,11 +139,14 @@ Grob_pq_engraver::start_translation_timestep () ENTER_DESCRIPTION(Grob_pq_engraver, -/* descr */ "Administrate when certain grobs (eg. note heads) stop playing; this -engraver is a sort-of a failure, since it doesn't handle all sorts of borderline cases very well. -", -/* creats*/ "", -/* accepts */ "", -/* acks */ "grob-interface", -/* reads */ "busyGrobs", + +/* descr */ "Administrate when certain grobs (eg. note heads) stop playing; this \ +engraver is a sort-of a failure, since it doesn't handle all sorts of \ +borderline cases very well. \ +", \ + +/* creats*/ "", \ +/* accepts */ "", \ +/* acks */ "grob-interface", \ +/* reads */ "busyGrobs", \ /* write */ "busyGrobs");