]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/all-font-metrics.cc
* lily/melisma-engraver.cc (try_music): use melisma_busy()
[lilypond.git] / lily / all-font-metrics.cc
index e6eddd883f42dcdd368974e49a0495e2f2bdda97..76336652255a0a7f6c30eeba1ea86967be1f507b 100644 (file)
@@ -53,17 +53,17 @@ All_font_metrics::find_afm (String name)
     {
       String path;
 
-      if (path.empty_b ())
+      if (path.is_empty ())
        path = search_path_.find (name  + ".afm");
 
-      if (path.empty_b ())
+      if (path.is_empty ())
        {
          String p = kpathsea_find_afm (name.to_str0 ());
          if (p.length ())
            path = p;
        }
 
-      if (path.empty_b ())
+      if (path.is_empty ())
        return 0;
       
       if (verbose_global_b)
@@ -127,16 +127,16 @@ All_font_metrics::find_tfm (String name)
     {
       String path;
       
-      if (path.empty_b ())
+      if (path.is_empty ())
        {
          String p = kpathsea_find_tfm (name.to_str0 ());
          if (p.length ())
            path = p;
        }
 
-      if (path.empty_b ())
+      if (path.is_empty ())
        path = search_path_.find (name  + ".tfm");
-      if (path.empty_b ())
+      if (path.is_empty ())
        return 0;
 
       if (verbose_global_b)