]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/translator-scheme.cc
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / lily / translator-scheme.cc
index 3aaf92fc3d70dad84ac2aa44694b6e668bbad8d7..5499b5e2e21371d385c57f55044b3680a23fa445 100644 (file)
 #include "translator-group.hh"
 #include "moment.hh"
 
-LY_DEFINE (ly_translator_name, "ly:translator-name",
-           1, 0, 0, (SCM trans),
-           "Return the type name of the translator object @var{trans}."
-           "  The name is a symbol.")
-{
-  LY_ASSERT_SMOB (Translator, trans, 1);
-  Translator *tr = unsmob<Translator> (trans);
-  char const *nm = tr->class_name ();
-  return ly_symbol2scm (nm);
-}
-
-LY_DEFINE (ly_translator_description, "ly:translator-description",
-           1, 0, 0, (SCM me),
-           "Return an alist of properties of translator @var{me}.")
-{
-  LY_ASSERT_SMOB (Translator, me, 1);
-  Translator *tr = unsmob<Translator> (me);
-  return tr->translator_description ();
-}
-
 LY_DEFINE (ly_translator_context, "ly:translator-context",
            1, 0, 0, (SCM trans),
            "Return the context of the translator object @var{trans}.")