From df814461512de18ebccfcbabc3c5ceb22e4e3fbd Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2002 01:00:28 +0000 Subject: [PATCH] lilypond-1.3.146 --- midi2ly/lilypond-item.cc | 6 +++--- midi2ly/lilypond-voice.cc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/midi2ly/lilypond-item.cc b/midi2ly/lilypond-item.cc index 2f70f5d4be..4c3830a637 100644 --- a/midi2ly/lilypond-item.cc +++ b/midi2ly/lilypond-item.cc @@ -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; } diff --git a/midi2ly/lilypond-voice.cc b/midi2ly/lilypond-voice.cc index 9595b93569..d7676b2634 100644 --- a/midi2ly/lilypond-voice.cc +++ b/midi2ly/lilypond-voice.cc @@ -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 ""; } -- 2.39.5