]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
(music_property_def): oops. SCM_UNDEFINED
[lilypond.git] / lily / relative-octave-music.cc
index 6487921b17ad23d5859ef51e48165745dec3b413..3a52d5d475c5b562b7d5f571d8c8894c31227f09 100644 (file)
@@ -3,17 +3,33 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
-
 #include "relative-music.hh"
 #include "warn.hh"
+#include "scm-option.hh"
+
 
 Pitch
-Relative_octave_music::to_relative_octave (Pitch)
+Relative_octave_music::to_relative_octave (Pitch p)
 {
-  return * unsmob_pitch (get_mus_property ("last-pitch"));
+  if (lily_1_8_relative)
+    {
+      lily_1_8_compatibility_used = true;
+      /*
+       ugh: last-pitch should  be junked.
+
+       Change this for lilypond 2.0. When you do,
+       then B should start where A left off.
+
+       \relative { A \relative { ...} B }
+
+      */
+      return * unsmob_pitch (get_mus_property ("last-pitch"));
+    }
+  else
+    return p;
 }
 
 
@@ -22,3 +38,5 @@ Relative_octave_music::Relative_octave_music ()
 }
 
 ADD_MUSIC (Relative_octave_music);
+
+