X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fhara-kiri-engraver.cc;h=d9aa0ddfec7d565d6abcc9ebb09b8c0708bc59e8;hb=997f899fa8184636570db2cb661cc8a8a5953bd6;hp=39cc48a90bcbbd62d8144aac7833d4e64b5ee722;hpb=77c7eccb319949accf3076b2a138e3ca16cf513e;p=lilypond.git diff --git a/lily/hara-kiri-engraver.cc b/lily/hara-kiri-engraver.cc index 39cc48a90b..d9aa0ddfec 100644 --- a/lily/hara-kiri-engraver.cc +++ b/lily/hara-kiri-engraver.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2006 Han-Wen Nienhuys + (c) 2005--2007 Han-Wen Nienhuys */ #include "axis-group-engraver.hh" @@ -23,7 +23,7 @@ protected: virtual Spanner *get_spanner (); DECLARE_ACKNOWLEDGER (grob); virtual void add_element (Grob *e); - void start_translation_timestep (); + void process_music (); virtual void derived_mark () const; SCM interesting_; public: @@ -43,9 +43,9 @@ Hara_kiri_engraver::derived_mark () const } void -Hara_kiri_engraver::start_translation_timestep () +Hara_kiri_engraver::process_music () { - Axis_group_engraver::start_translation_timestep (); + Axis_group_engraver::process_music (); interesting_ = get_property ("keepAliveInterfaces"); } @@ -79,10 +79,18 @@ Hara_kiri_engraver::acknowledge_grob (Grob_info i) ADD_ACKNOWLEDGER (Hara_kiri_engraver, grob); ADD_TRANSLATOR (Hara_kiri_engraver, - /* doc */ "Like Axis_group_engraver, but make a hara-kiri spanner, and add " - "interesting items (ie. note heads, lyric syllables and normal rests) ", - /* create */ "VerticalAxisGroup", - /* accept */ "", - /* read */ "keepAliveInterfaces", - /* write */ ""); + /* doc */ + "Like @code{Axis_group_engraver}, but make a hara-kiri" + " spanner, and add interesting items (i.e., note heads, lyric" + " syllables, and normal rests).", + + /* create */ + "VerticalAxisGroup ", + + /* read */ + "keepAliveInterfaces ", + + /* write */ + "" + );