]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/extender-engraver.cc
* lily/script-engraver.cc (make_script_from_event): don't crash on
[lilypond.git] / lily / extender-engraver.cc
index 6bde55b284a63c6fc95564dc6a52eca4506585e6..25ca7a65b9aa5dbcaa1ca92cc29623d6d9c1cfc4 100644 (file)
@@ -1,13 +1,15 @@
 /*
   extender-engraver.cc -- implement Extender_engraver
 
-  (c) 1999 Glen Prideaux <glenprideaux@iname.com>,
-  Han-Wen Nienhuys, Jan Nieuwenhuizen.
+  source file of the GNU LilyPond music typesetter
   
+  (c)  1999--2003 Glen Prideaux <glenprideaux@iname.com>,
+                  Han-Wen Nienhuys <hanwen@cs.uu.nl>,
+                  Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "flower-proto.hh"
-#include "request.hh"
+#include "event.hh"
 #include "lyric-extender.hh"
 #include "paper-column.hh"
 #include "item.hh"
@@ -23,7 +25,7 @@
   gap between syllables.
 
   We remember the last Item that come across. When we get a
-  request, we create the spanner, and attach the left point to the
+  event, we create the spanner, and attach the left point to the
   last lyrics, and the right point to any lyrics we receive by
   then.  */
 class Extender_engraver : public Engraver
@@ -81,7 +83,7 @@ Extender_engraver::try_music (Music* r)
     return false;
 
   req_ = r;
-      return true;
+  return true;
 }
 
 void
@@ -101,7 +103,7 @@ Extender_engraver::process_music ()
     {
       if (!last_lyric_)
        {
-         req_->origin ()->warning (_ ("Nothing to connect extender to on the left.  Ignoring extender request."));
+         req_->origin ()->warning (_ ("Nothing to connect extender to on the left.  Ignoring extender event."));
          return;
        }