]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spaceable-grob.cc
2003 -> 2004
[lilypond.git] / lily / spaceable-grob.cc
index 5be0e8ded7179c8f93842e4f9cd309b2339d9308..87df4b71543206ebdd07419e81fab2d7a0dca97e 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 #include <stdio.h> 
@@ -94,16 +94,16 @@ Spaceable_grob::add_spring (Grob*me, Grob * p, Real d, Real strength, bool expan
 void
 Spaceable_grob::remove_interface (Grob*me)
 {
-  me->remove_grob_property ("minimum-distances");
-  me->remove_grob_property ("spacing-wishes");
-  me->remove_grob_property ("ideal-distances");
+  me->set_grob_property ("minimum-distances" , SCM_EOL);
+  me->set_grob_property ("spacing-wishes", SCM_EOL);
+  me->set_grob_property ("ideal-distances", SCM_EOL);
 }
 
 
 
 ADD_INTERFACE (Spaceable_grob,"spaceable-grob-interface",
-  "A grob (a Paper_column) that takes part in the
-spacing problem. ",
-  "measure-length spacing-wishes penalty minimum-distances ideal-distances
-left-neighbors right-neighbors");
+              "A grob (a Paper_column) that takes part in the \n"
+              "spacing problem. ",
+  "measure-length spacing-wishes penalty minimum-distances ideal-distances "
+"left-neighbors right-neighbors");