]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / swallow-engraver.cc
index 868047126b2edfb9c1adf19d801690544ee61425..0b6a7248171fa702f5e917a5aef3b7beac58c08b 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "engraver.hh"
@@ -13,11 +13,11 @@ class Swallow_engraver : public Engraver
 public:
   TRANSLATOR_DECLARATIONS (Swallow_engraver);
 protected:
-  bool try_music (Music*) ;
+  bool try_music (Music *);
 };
 
 bool
-Swallow_engraver::try_music (Music*) 
+Swallow_engraver::try_music (Music *)
 {
   return true;
 }
@@ -26,11 +26,20 @@ Swallow_engraver::Swallow_engraver ()
 {
 }
 
+#include "translator.icc"
+
 ADD_TRANSLATOR (Swallow_engraver,
-/* descr */       "This engraver swallows everything given to it silently. The purpose of "
-                 "this is to prevent spurious \"event junked\" warnings.",
-/* creats*/       "",
-/* accepts */     "general-music",
-/* acks  */       "",
-/* reads */       "",
-/* write */       "");
+               /* doc */
+               "This engraver swallows everything given to it silently."
+               "  The purpose of this is to prevent spurious @q{event junked}"
+               " warnings.",
+
+               /* create */
+               "",
+
+               /* read */
+               "",
+
+               /* write */
+               ""
+               );