]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/directional-element-interface.cc
Run `make grand-replace'.
[lilypond.git] / lily / directional-element-interface.cc
index b45012c3bec2507e35b11c0015d954d5c5625e49..c217677606119577b77c11e43a112973233ed257 100644 (file)
@@ -1,28 +1,33 @@
-/*   
+/*
   directional-element-interface.cc -- implement Directional_element
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
 
-#include "directional-element-interface.hh"
+  (c) 1999--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
+#include "directional-element-interface.hh"
+#include "warn.hh"
+#include "grob.hh"
 
 Direction
-get_grob_direction (Grob*me) 
+get_grob_direction (Grob *me)
 {
-  SCM d= me->get_property ("direction");
+  SCM d = me->get_property ("direction");
+  if (d == ly_symbol2scm ("calculation-in-progress"))
+    {
+      programming_error ("Grob direction requested while calculation in progress. ");
+      return UP;
+    }
   if (!is_direction (d))
     return CENTER;
-      
+
   return to_dir (d);
 }
 
 void
-set_grob_direction (Grob*me, Direction d) 
+set_grob_direction (Grob *me, Direction d)
 {
-  SCM sd = scm_int2num (d);
+  SCM sd = scm_from_int (d);
   me->set_property ("direction", sd);
 }