]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
Run `make grand-replace'.
[lilypond.git] / lily / swallow-perf.cc
index 3bf237d1015ad8699e13d695f25924214f1ee74f..d24b9339a490d8c5ad754146b171a2bedcfacbbc 100644 (file)
@@ -3,13 +3,12 @@
 
   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 "performer.hh"
 #include "music.hh"
 
-
 class Swallow_performer : public Performer
 {
 public:
@@ -21,8 +20,7 @@ protected:
 bool
 Swallow_performer::try_music (Music *m)
 {
-  if (m->is_mus_type ("busy-playing-event")
-      || m->is_mus_type ("melisma-playing-event"))
+  if (m->is_mus_type ("melisma-playing-event"))
     return false;
   else
     return true;
@@ -31,10 +29,18 @@ Swallow_performer::try_music (Music *m)
 Swallow_performer::Swallow_performer ()
 {}
 
+#include "translator.icc"
+
 ADD_TRANSLATOR (Swallow_performer,
-               /* descr */ "",
-               /* creats*/ "",
-               /* accepts */ "general-music",
-               /* acks  */ "",
-               /* reads */ "",
-               /* write */ "");
+               /* doc */
+               "",
+
+               /* create */
+               "",
+
+               /* read */
+               "",
+
+               /* write */
+               ""
+               );