]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef.cc
*** empty log message ***
[lilypond.git] / lily / clef.cc
index 73216528f0424e8e2cd636a4ec27c9bef541e615..7774d1920e7e2121991d1b3d40c34c534aa55226 100644 (file)
@@ -23,7 +23,7 @@ Clef::before_line_breaking (SCM smob)
 
   SCM glyph = s->get_property ("glyph-name");
   
-  if (gh_string_p (glyph))
+  if (ly_c_string_p (glyph))
     {
       String str = ly_scm2string (glyph);
 
@@ -53,7 +53,7 @@ Clef::print (SCM smob)
 {
   Grob *me = unsmob_grob (smob);
   SCM glyph_scm = me->get_property ("glyph-name");
-  if (!gh_string_p (glyph_scm))
+  if (!ly_c_string_p (glyph_scm))
     return SCM_EOL;
 
   String glyph = String (ly_scm2string (glyph_scm));