]> git.donarmstrong.com Git - lilypond.git/commitdiff
patch::: 1.3.41.jcn3
authorJan Nieuwenhuizen <janneke@gnu.org>
Sat, 1 Apr 2000 14:51:17 +0000 (16:51 +0200)
committerJan Nieuwenhuizen <janneke@gnu.org>
Sat, 1 Apr 2000 14:51:17 +0000 (16:51 +0200)
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

CHANGES
VERSION
lily/chord.cc

diff --git a/CHANGES b/CHANGES
index 71b2b44f4a6a1ffcc605d3baf85383b4cb14589b..4b8ac2ac1dd0582edc90992934edc9d1b53024d4 100644 (file)
--- 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 c5d027c045ea98c5731350bf6ec784c75fa73a78..43db4574f0b816f07bf0f349b6202273bca632e5 100644 (file)
--- 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.
index 5c80c7c1752d78a966b9db0172e2b9ad2f4577ec..e188062f0e06870cc18a29a689af662443b4b93d 100644 (file)
@@ -193,10 +193,7 @@ to_chord (Array<Musical_pitch> 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 ()