The Lyric_combine_music_iterator had an explicit check if the CreateContext event was really for a context of type "Voice". Unfortunately, that check fails if the lyrics are supposed to be attached to a CueVoice context (or some self-defined Voice-derived context!), because "CueVoice"!="Voice".
Unfortunately, I don't know how to check whether a context "CVoice" (identified only by a the context type string; we don't have any Context* object!) is an alias for Voice. If we had the Context* object, we could use is_alias, but we only have the string "CVoice" and need to check if a context of that type is an alias for "Voice". However, I don't think that check is necessary at all. It simply prevents find_voice from being called in cases when no Voice is generated (and thus no new context to possibly attach the lyrics to). If that check is removed, find_voice will also be called for any other context created while waiting for a voice to attach the lyrics to, but it will not find an appropriate voice anyway. Please review: http://codereview.appspot.com/4672041/ This patch fixes issue 770: http://code.google.com/p/lilypond/issues/detail?id=770 -- ------------------------------------------------------------------ Reinhold Kainhofer, [email protected], http://reinhold.kainhofer.com/ * Financial & Actuarial Math., Vienna Univ. of Technology, Austria * http://www.fam.tuwien.ac.at/, DVR: 0005886 * LilyPond, Music typesetting, http://www.lilypond.org _______________________________________________ lilypond-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/lilypond-devel
