]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.146
authorfred <fred>
Wed, 27 Mar 2002 01:00:28 +0000 (01:00 +0000)
committerfred <fred>
Wed, 27 Mar 2002 01:00:28 +0000 (01:00 +0000)
midi2ly/lilypond-item.cc
midi2ly/lilypond-voice.cc

index 2f70f5d4be05c4f1fb3ab487cf48dbc0803303f4..4c3830a63722e2e8a939954058721f02eb35be5e 100644 (file)
@@ -71,7 +71,7 @@ Lilypond_key::str ()
   if (accidentals_i)
     notename_str += String (accname [accidentals_i + 2]);
 
-  return "\\key " + notename_str  + (minor_i_ ? "\\minor" : "\\major") + ";\n";
+  return "\\key " + notename_str  + (minor_i_ ? "\\minor" : "\\major") + "\n";
 }
 
 String
@@ -195,7 +195,7 @@ Lilypond_time_signature::str ()
 {
   String str = "\\time "
     + to_str (num_i_) + "/" + to_str (1 << den_i_)
-    + ";\n";
+    + "\n";
   return str;
 }
 
@@ -328,7 +328,7 @@ Lilypond_tempo::str ()
 {
   String str = "\\tempo 4=";
   str += to_str (get_tempo_i (Rational (1, 4)));
-  str += ";\n";
+  str += "\n";
   return str;
 }
 
index 9595b9356959d2e0c2e565e90a28c6d9db06c7cb..d7676b26341796d31b52b2f7b17a340b74db2235 100644 (file)
@@ -51,9 +51,9 @@ Lilypond_voice::get_clef () const
   int p = n->pitch_i_;
 
   if (p < 56)
-    return "\\clef \"bass\";\n";
+    return "\\clef \"bass\"\n";
   else if (p > 67)
-    return "\\clef \"treble\";\n";
+    return "\\clef \"treble\"\n";
   else
     return "";
 }