]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lilypond-key.cc
* buildscripts/analyse-cxx-log.py: new file. Read compile log to
[lilypond.git] / lily / lilypond-key.cc
index be4c00b50eb75423b47d4796dc0346ed771a6f9d..d9833307afe1679caed24e835661f766e7c49f1d 100644 (file)
@@ -62,7 +62,7 @@ Lilypond_grob_key::as_scheme () const
 {
   return scm_list_4 (context_ ? context_->self_scm () : SCM_BOOL_F,
                     creation_moment_.smobbed_copy (),
-                    scm_makfrom0str (grob_name_.to_str0 ()),
+                    scm_makfrom0str (grob_name_.c_str ()),
                     scm_from_int (disambiguation_count_));
 }
 
@@ -145,8 +145,8 @@ Lilypond_context_key::as_scheme () const
 {
   return scm_list_5 (parent_context_ ? parent_context_->self_scm () : SCM_BOOL_F,
                     start_moment_.smobbed_copy (),
-                    scm_makfrom0str (context_name_.to_str0 ()),
-                    scm_makfrom0str (id_.to_str0 ()),
+                    scm_makfrom0str (context_name_.c_str ()),
+                    scm_makfrom0str (id_.c_str ()),
                     scm_from_int (disambiguation_count_));
 }
 
@@ -212,7 +212,7 @@ SCM
 Lilypond_general_key::as_scheme () const
 {
   return scm_list_3 (parent_ ? parent_->self_scm () : SCM_BOOL_F,
-                    scm_makfrom0str (name_.to_str0 ()),
+                    scm_makfrom0str (name_.c_str ()),
                     scm_from_int (disambiguation_count_));
 }