]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/hyphen-engraver.cc
* lily/text-spanner.cc: add bound-padding.
[lilypond.git] / lily / hyphen-engraver.cc
index aa647816ba989e5d9073a2249b6a1d298a23f660..2f314f00062b7eef4c0babaee031346903c37765 100644 (file)
@@ -28,10 +28,8 @@ protected:
   virtual void stop_translation_timestep ();
   virtual void process_music ();
 private:
-
 };
 
-
 Hyphen_engraver::Hyphen_engraver ()
 {
   hyphen_ = 0;
@@ -127,7 +125,7 @@ Hyphen_engraver::stop_translation_timestep ()
 
   if (finished_hyphen_ && hyphen_)
     {
-      programming_error ("Haven't finished hyphen yet.");
+      programming_error ("hyphen not finished yet");
       finished_hyphen_ = 0;
     }
 
@@ -138,7 +136,6 @@ Hyphen_engraver::stop_translation_timestep ()
   ev_ = 0;
 }
 
-
 ADD_TRANSLATOR (Hyphen_engraver,
                /* descr */ "Create lyric hyphens",
                /* creats*/ "LyricHyphen",