]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/molecule.cc
ly- -> ly:
[lilypond.git] / lily / molecule.cc
index 15cc8f2f07c37e5d281144eed8fa14b2226b77c0..127850d1238e12e2c05b3a571e35f7e8468dfc1b 100644 (file)
@@ -135,7 +135,7 @@ Molecule::add_at_edge (Axis a, Direction d, Molecule const &m, Real padding)
   add_molecule (toadd);
 }
 
-LY_DEFINE(ly_set_molecule_extent_x,"ly-set-molecule-extent!", 3 , 0, 0, 
+LY_DEFINE(ly_set_molecule_extent_x,"ly:set-molecule-extent!", 3 , 0, 0, 
          (SCM mol, SCM axis, SCM np),
          "Set the extent (@var{extent} must be a pair of numbers) of @var{mol} in 
 @var{axis} direction (0 or 1 for x- and y-axis respectively).
@@ -156,7 +156,7 @@ smaller than @code{B}, and is often negative.
 }
 
 LY_DEFINE(ly_get_molecule_extent,
-         "ly-get-molecule-extent", 2 , 0, 0,  (SCM mol, SCM axis),
+         "ly:get-molecule-extent", 2 , 0, 0,  (SCM mol, SCM axis),
          "Return a pair of numbers signifying the extent of @var{mol} in
 @var{axis} direction (0 or 1 for x and y axis respectively).
 ")
@@ -170,7 +170,7 @@ LY_DEFINE(ly_get_molecule_extent,
 
 
 LY_DEFINE(ly_molecule_combined_at_edge,
-         "ly-combine-molecule-at-edge",
+         "ly:combine-molecule-at-edge",
          5 , 0, 0,  (SCM first, SCM axis, SCM direction,
                      SCM second, SCM padding),
          "Construct a molecule by putting @var{second} next to
@@ -201,7 +201,7 @@ space to add in between measured in global staff space.")
   FIXME: support variable number of arguments "
  */
 LY_DEFINE(ly_add_molecule , 
-         "ly-add-molecule", 2, 0,0,(SCM first, SCM second),
+         "ly:add-molecule", 2, 0,0,(SCM first, SCM second),
          "Combine two molecules."
          )
 {
@@ -219,7 +219,7 @@ LY_DEFINE(ly_add_molecule ,
 }
 
 LY_DEFINE(ly_make_molecule,
-         "ly-make-molecule", 3, 0, 0,  (SCM expr, SCM xext, SCM yext),
+         "ly:make-molecule", 3, 0, 0,  (SCM expr, SCM xext, SCM yext),
          "
 The objective of any typesetting system is to put ink on paper in the
 right places. For LilyPond, this final stage is left to the @TeX{} and
@@ -271,7 +271,7 @@ fontify_atom (Font_metric const * met, SCM f)
                        ly_quote_scm (met->description_), f, SCM_UNDEFINED);
 }
 
-LY_DEFINE(ly_fontify_atom,"ly-fontify-atom", 2, 0, 0, 
+LY_DEFINE(ly_fontify_atom,"ly:fontify-atom", 2, 0, 0, 
          (SCM met, SCM f),
          "Add a font selection command for the font metric @var{met} to @var{f}.")
 {
@@ -279,7 +279,7 @@ LY_DEFINE(ly_fontify_atom,"ly-fontify-atom", 2, 0, 0,
 
   return fontify_atom (unsmob_metrics (met), f);
 }
-LY_DEFINE(ly_align_to_x,"ly-align-to!", 3, 0, 0,  (SCM mol, SCM axis, SCM dir),
+LY_DEFINE(ly_align_to_x,"ly:align-to!", 3, 0, 0,  (SCM mol, SCM axis, SCM dir),
          "Align @var{mol} using its own extents.")
 {
   SCM_ASSERT_TYPE(unsmob_molecule (mol), mol, SCM_ARG1, __FUNCTION__, "molecule");
@@ -342,6 +342,6 @@ Molecule::mark_smob (SCM s)
   return r->expr_;
 }
 
-IMPLEMENT_TYPE_P (Molecule, "molecule?");
+IMPLEMENT_TYPE_P (Molecule, "ly:molecule?");
 IMPLEMENT_DEFAULT_EQUAL_P (Molecule);