]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-interface.cc
(outside_slur_callback): try three sample points
[lilypond.git] / lily / script-interface.cc
index 6d6c67263b20a9de32e61ab38814694624963e77..59672c7e2fcda86abf913b8e90531e1c8f376ccb 100644 (file)
@@ -23,13 +23,13 @@ Stencil
 Script_interface::get_stencil (Grob *me, Direction d)
 {
   SCM s = me->get_property ("script-stencil");
-  assert (ly_c_pair_p (s));
+  assert (scm_is_pair (s));
 
   SCM key = ly_car (s);
   if (key == ly_symbol2scm ("feta"))
     {
       SCM name_entry = ly_cdr (s);
-      SCM str = ((ly_c_pair_p (name_entry)) ? index_get_cell (name_entry, d)
+      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));
@@ -92,9 +92,13 @@ struct Text_script
 
 ADD_INTERFACE (Text_script,"text-script-interface",
   "An object that is put above or below a note",
-  "script-priority inside-slur");
+  "add-stem-support slur script-priority inside-slur");
 
+
+/*
+  Hmm. Where should we put add-stem-support ?
+ */
 ADD_INTERFACE (Script_interface, "script-interface",
   "An object that is put above or below a note",
-  "script-priority script-stencil inside-slur");
+  "add-stem-support slur-padding slur script-priority script-stencil inside-slur");