X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftext-spanner-engraver.cc;h=b9c7b75fb94589b62f3d5bf9b421fdb0de19d2cf;hb=67ff565b4ada90eeb753a866b22ddb4eaa8c6234;hp=697cc4d2f1fa2621a6ee127db7836479ae3ba1fe;hpb=61efe573dbab8a03dde412de1e534df7bb6db6c1;p=lilypond.git diff --git a/lily/text-spanner-engraver.cc b/lily/text-spanner-engraver.cc index 697cc4d2f1..b9c7b75fb9 100644 --- a/lily/text-spanner-engraver.cc +++ b/lily/text-spanner-engraver.cc @@ -1,9 +1,20 @@ /* - text-spanner-engraver.cc -- implement Text_spanner_engraver + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2000--2011 Jan Nieuwenhuizen - (c) 2000--2007 Jan Nieuwenhuizen + 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 . */ #include "engraver.hh" @@ -63,6 +74,7 @@ Text_spanner_engraver::process_music () else { finished_ = span_; + announce_end_grob (finished_, SCM_EOL); span_ = 0; current_event_ = 0; } @@ -144,10 +156,13 @@ ADD_ACKNOWLEDGER (Text_spanner_engraver, note_column); ADD_TRANSLATOR (Text_spanner_engraver, /* doc */ "Create text spanner from an event.", + /* create */ "TextSpanner ", + /* read */ "", + /* write */ "" );