]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Music_wrapper): use start_callback_proc release/2.6.1
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 10 Jul 2005 11:23:23 +0000 (11:23 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 10 Jul 2005 11:23:23 +0000 (11:23 +0000)
(not length_callback_proc) for start_callback_. This fixes grace
notes at the start of music wrappers.

ChangeLog
lily/music-wrapper.cc

index c2d92ecfa15db79af2fd3e6b5a75d3deadb384e6..87209404ebdb95d1ba8db8f18ba044ca91435a6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-07-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * lily/music-wrapper.cc (Music_wrapper): use start_callback_proc
+       (not length_callback_proc) for start_callback_. This fixes grace
+       notes at the start of music wrappers.
+
 2005-07-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * po/{de,fr}.po: update.
index 7106707d5a4abe8f2f6e23df8959cb801a664253..18fe4665cd08b82712be6524aa08d290f20cb557 100644 (file)
@@ -14,7 +14,7 @@ Music_wrapper::Music_wrapper (SCM x)
   if (!ly_c_procedure_p (length_callback_))
     length_callback_ = length_callback_proc;
   if (!ly_c_procedure_p (start_callback_))
-    start_callback_ = length_callback_proc;
+    start_callback_ = start_callback_proc;
 }
 
 MAKE_SCHEME_CALLBACK (Music_wrapper, start_callback, 1);