]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/virtual-font-metric.cc
* lily/include/scm-hash.hh (class Scheme_hash_table): idem.
[lilypond.git] / lily / virtual-font-metric.cc
index 1bf489302c0486aa0a602a5cd8afa7d5872ca0fa..11b431c5aefaabaa1d06a732bde461d13b72c194 100644 (file)
@@ -54,7 +54,7 @@ Molecule
 Virtual_font_metric::find_by_name (String glyph) const
 {
   Molecule m;  
-  for (SCM s = font_list_; m.empty_b () && gh_pair_p (s); s = gh_cdr (s))
+  for (SCM s = font_list_; m.is_empty () && gh_pair_p (s); s = gh_cdr (s))
     {
       m = unsmob_metrics (gh_car (s))->find_by_name (glyph);
     }
@@ -121,7 +121,7 @@ Virtual_font_metric::name_to_index (String glyph) const
 {
   Molecule m;
   int total = 0; 
-  for (SCM s = font_list_; m.empty_b () && gh_pair_p (s); s = gh_cdr (s))
+  for (SCM s = font_list_; m.is_empty () && gh_pair_p (s); s = gh_cdr (s))
     {
       Font_metric *m =unsmob_metrics (gh_car (s));
       int k = m->name_to_index (glyph);