]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/side-position-interface.cc
* mf/GNUmakefile: always trace pfa fonts.
[lilypond.git] / lily / side-position-interface.cc
index d5e9a4f0f3d96be24f5c56b586aaa135e427f149..103593b686c95be0bf6a7e80b69e5460209bfcea 100644 (file)
@@ -28,12 +28,12 @@ Direction
 Side_position_interface::get_direction (Grob*me)
 {
   SCM d = me->get_grob_property ("direction");
-  if (ly_dir_p (d) && to_dir (d))
+  if (is_direction (d) && to_dir (d))
     return to_dir (d);
 
   Direction relative_dir = Direction (1);
   SCM reldir = me->get_grob_property ("side-relative-direction");      // should use a lambda.
-  if (ly_dir_p (reldir))
+  if (is_direction (reldir))
     {
       relative_dir = to_dir (reldir);
     }
@@ -303,7 +303,7 @@ Side_position_interface::supported_b (Grob*me)
 
 ADD_INTERFACE (Side_position_interface,"side-position-interface",
   "Position a victim object (this one) next to other objects (the "
-"support).  In this case, the direction signifies where to put the  "
+"support).  In this case, the property @code{direction} signifies where to put the  "
 "victim object relative to the support (left or right, up or down?) "
 ,
   "staff-padding side-support-elements direction-source direction side-relative-direction minimum-space padding");