]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-engraver.cc
Web-hu: Translated missing website strings
[lilypond.git] / lily / lyric-engraver.cc
index 74d15e4df1faedef65fddc857260b3fe33c46c5e..eaa96a5a6fb13c92d39bf5531194b476578c3f7a 100644 (file)
@@ -1,10 +1,21 @@
 /*
-  lyric-engraver.cc -- implement Lyric_engraver
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "context.hh"
@@ -64,8 +75,11 @@ Lyric_engraver::process_music ()
          if (last_text_)
            last_text_->set_property ("self-alignment-X", scm_from_int (LEFT));
        }
-      else
-       text_ = make_item ("LyricText", event_->self_scm ());
+      /*
+        "Empty" LyricText objects are needed to allow the Extender_engraver to
+        distinguish between the end of a lyrics block and manual melismata.
+      */
+      text_ = make_item ("LyricText", event_->self_scm ());
     }
 }