]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
* scm/define-grob-properties.scm: remove 'type
[lilypond.git] / lily / relative-octave-music.cc
index 3f69f920a081939d54bc63e6a2923c9aaf61440d..ad2350fa39bdf337e71e58a3587d51762367dc40 100644 (file)
@@ -3,29 +3,32 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "relative-music.hh"
-#include "debug.hh"
+#include "warn.hh"
 
 Pitch
 Relative_octave_music::to_relative_octave (Pitch)
 {
-  return * unsmob_pitch (get_mus_property ("last-pitch"));
-}
+       /*
+               ugh: last-pitch should  be junked.
 
+               Change this for lilypond 2.0. When you do,
+               then B should start where A left off.
 
-Relative_octave_music::Relative_octave_music (SCM l)
-  : Music_wrapper (l)
-{
-  set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));  
+               \relative { A \relative { ...} B }
+
+               */
+
+  return * unsmob_pitch (get_mus_property ("last-pitch"));
 }
 
+
 Relative_octave_music::Relative_octave_music ()
 {
-    set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));
 }
 
 ADD_MUSIC (Relative_octave_music);