]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-interface.cc
release commit
[lilypond.git] / lily / script-interface.cc
index 0a92b4b1612f37d4f1ecc7c70f3f44de7815e693..c13ddf876429b5856c0afe8f73b182b02229c695 100644 (file)
@@ -25,17 +25,17 @@ Script_interface::get_stencil (Grob *me, Direction d)
   SCM s = me->get_property ("script-stencil");
   assert (scm_is_pair (s));
 
-  SCM key = scm_car (s);
+  SCM key = ly_car (s);
   if (key == ly_symbol2scm ("feta"))
     {
-      SCM name_entry = scm_cdr (s);
+      SCM name_entry = ly_cdr (s);
       SCM str = ((scm_is_pair (name_entry)) ? index_get_cell (name_entry, d)
                 : name_entry);
       return Font_interface::get_default_font (me)
        ->find_by_name ("scripts-" + ly_scm2string (str));
     }
   else if (key == ly_symbol2scm ("accordion"))
-    return Lookup::accordion (scm_cdr (s), 1.0,
+    return Lookup::accordion (ly_cdr (s), 1.0,
                              Font_interface::get_default_font (me));
   else
     assert (false);