[document reintroduced deficiencies.]
+
+midi instrument?
+*******************
+ '.' -> lilypond: lexer.l:258: int My_lily_lexer::yylex(): Assertion `cnv == 1' failed.
+
+***********************
+
+2nd staff takes too long.
+
+\score { <
+ \melodic { \id "Staff" ""; c'4 g'4 }
+ \lyric { \id "Lyric" ""; hello4 bye4 < a chord > }
+ \lyric { \id "Lyric" ""; bye4 hello4 }
+ \melodic { \id "Staff" ""; c'4 g'4 }
+ >
+}
+
+*******************
--- /dev/null
+/*
+ line-group-grav.hh -- declare
+
+ source file of the GNU LilyPond music typesetter
+
+ (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef LINE_GROUP_GRAV_HH
+#define LINE_GROUP_GRAV_HH
+
+#include "engraver.hh"
+
+/**
+ Engravers put elements on the same or lowel level in a line
+ */
+class Line_group_engraver : public Engraver{
+ Line_of_staff *staffline_p_;
+
+protected:
+ virtual void do_creation_processing();
+ virtual void do_removal_processing();
+ virtual void acknowledge_element(Score_elem_info);
+
+public:
+ NAME_MEMBERS();
+ Line_group_engraver();
+};
+
+
+#endif // LINE_GROUP_GRAV_HH
+