]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/translator-ctors.cc
release commit
[lilypond.git] / lily / translator-ctors.cc
index 480f7d84bd4eeb9243691aa3dc55475f7965964d..c2975df317b8491ebb4617a2c16ae87803e12657 100644 (file)
 Scheme_hash_table *global_translator_dict=0;
 
 LY_DEFINE (get_all_translators,"ly:get-all-translators", 0, 0, 0,  (),
-         "Return an list of a all translator objects that may be instantiated "
-         " during a lilypond run.")
+         "Return a list of all translator objects that may be instantiated. "
+          )
 {
   SCM l = global_translator_dict ?  global_translator_dict->to_alist () : SCM_EOL;
 
-  for (SCM s =l; gh_pair_p (s); s = gh_cdr (s))
+  for (SCM s =l; scm_is_pair (s); s = ly_cdr (s))
     {
-      gh_set_car_x (s, gh_cdar (s));
+      scm_set_car_x (s, ly_cdar (s));
     }
 
   return l;