]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/stem-engraver.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / stem-engraver.cc
index 019b05333facfd37b28e59b67c15eeab1331b853..797406b4fbc062d28aa0cc9af6f152d3435073ce 100644 (file)
@@ -3,12 +3,15 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
+#include "engraver.hh"
+
 #include "context.hh"
 #include "directional-element-interface.hh"
-#include "engraver.hh"
+#include "duration.hh"
+#include "international.hh"
 #include "item.hh"
 #include "misc.hh"
 #include "rhythmic-head.hh"
@@ -16,7 +19,6 @@
 #include "staff-symbol-referencer.hh"
 #include "stem-tremolo.hh"
 #include "stem.hh"
-#include "duration.hh"
 
 /**
    Make stems upon receiving noteheads.
@@ -169,11 +171,18 @@ Stem_engraver::try_music (Music *m)
 }
 
 #include "translator.icc"
+
 ADD_ACKNOWLEDGER (Stem_engraver, rhythmic_head);
+
 ADD_TRANSLATOR (Stem_engraver,
                /* doc */ "Create stems and single-stem tremolos.  It also works together with "
                "the beam engraver for overriding beaming.",
-               /* create */ "Stem StemTremolo",
+               /* create */
+               "Stem "
+               "StemTremolo ",
                /* accept */ "tremolo-event",
-               /* read */ "tremoloFlags stemLeftBeamCount stemRightBeamCount",
+               /* read */
+               "tremoloFlags "
+               "stemLeftBeamCount "
+               "stemRightBeamCount ",
                /* write */ "");