X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmulti-measure-rest-engraver.cc;h=fc5563854cc2295fc5407cd33c0aceb40790ee27;hb=d57ab9acd8d84061206517721542f72462a00b1f;hp=c8ea549701b57a4537c7e4f387c632e278a05ca8;hpb=a3765e1d290e5e49093e7ca7791bf3fe20be1726;p=lilypond.git diff --git a/lily/multi-measure-rest-engraver.cc b/lily/multi-measure-rest-engraver.cc index c8ea549701..fc5563854c 100644 --- a/lily/multi-measure-rest-engraver.cc +++ b/lily/multi-measure-rest-engraver.cc @@ -148,12 +148,13 @@ void Multi_measure_rest_engraver::stop_translation_timestep () { /* We cannot do this earlier, as breakableSeparationItem is not yet - there. */ + there. + + Actually, we no longer use breakableSeparationItem -- should this be moved? + -- jneem */ if (bar_seen_) { - Grob *cmc = unsmob_grob (get_property ("breakableSeparationItem")); - if (!cmc) - cmc = unsmob_grob (get_property ("currentCommandColumn")); + Grob *cmc = unsmob_grob (get_property ("currentCommandColumn")); /* Ugh, this is a kludge - need this for multi-measure-rest-grace.ly */ last_command_item_ = dynamic_cast (cmc); @@ -251,10 +252,12 @@ Multi_measure_rest_engraver::finalize () ADD_TRANSLATOR (Multi_measure_rest_engraver, /* doc */ - "Engraves multi-measure rests that are produced with @code{R}. Reads " - "@code{measurePosition} and @code{internalBarNumber} to determine what number to print " - "over the @ref{MultiMeasureRest}. Reads @code{measureLength} to determine if it " - "should use a whole rest or a breve rest to represent 1 measure ", + "Engrave multi-measure rests that are produced with" + " @samp{R}. It reads @code{measurePosition} and" + " @code{internalBarNumber} to determine what number to print" + " over the @ref{MultiMeasureRest}. Reads @code{measureLength}" + " to determine whether it should use a whole rest or a breve" + " rest to represent one measure.", /* create */ "MultiMeasureRest " @@ -269,4 +272,6 @@ ADD_TRANSLATOR (Multi_measure_rest_engraver, "measurePosition " "measureLength ", - /* write */ ""); + /* write */ + "" + );