From: Jan Nieuwenhuizen Date: Sat, 1 Apr 2000 14:51:17 +0000 (+0200) Subject: patch::: 1.3.41.jcn3 X-Git-Tag: release/1.3.42~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=da011b6b4add5f671cf7d718ea093140ffdbbffb;p=lilypond.git patch::: 1.3.41.jcn3 1.3.41.jcn3 =========== * chord.cc (to_chord): Forgot to remove early chord bugfix, introducing a new bug. --- Generated by janneke@gnu.org, From = lilypond-1.3.41.jcn2, To = lilypond-1.3.41.jcn3 usage cd lilypond-source-dir; patch -E -p1 < lilypond-1.3.41.jcn3.diff Patches do not contain automatically generated files or (urg) empty directories, i.e., you should rerun autoconf, configure --- diff --git a/CHANGES b/CHANGES index 71b2b44f4a..4b8ac2ac1d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,15 @@ ---- ../lilypond-1.3.41.jcn1/CHANGES Thu Mar 30 17:50:26 2000 +--- ../lilypond-1.3.41.jcn2/CHANGES Sat Apr 1 13:09:18 2000 +++ b/CHANGES Sat Apr 1 16:51:17 2000 +@@ -1,3 +1,9 @@ +1.3.41.jcn3 +=========== + +* chord.cc (to_chord): Forgot to remove early chord bugfix, introducing +a new bug. + + 1.3.41.jcn2 + =========== + --- ../lilypond-1.3.41.jcn1/CHANGES Thu Mar 30 17:50:26 2000 ++ b/CHANGES Sat Apr 1 13:09:18 2000 @@ -1,3 +1,13 @@ 1.3.41.jcn2 diff --git a/VERSION b/VERSION index c5d027c045..43db4574f0 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 PATCH_LEVEL=41 -MY_PATCH_LEVEL=jcn2 +MY_PATCH_LEVEL=jcn3 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/lily/chord.cc b/lily/chord.cc index 5c80c7c175..e188062f0e 100644 --- a/lily/chord.cc +++ b/lily/chord.cc @@ -193,10 +193,7 @@ to_chord (Array pitch_arr, Tonic_req* tonic_req, Inversion_req* i assert (pitch_arr[0].notename_i_ == tonic_req->pitch_.notename_i_); } - Chord chord (pitch_arr, inversion_p, bass_p); - delete inversion_p; - delete bass_p; - return chord; + return Chord (pitch_arr, inversion_p, bass_p); } Chord::Chord ()