]> git.donarmstrong.com Git - lilypond.git/commitdiff
(init_fontconfig): be verbose about font path.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 9 Apr 2005 10:20:31 +0000 (10:20 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 9 Apr 2005 10:20:31 +0000 (10:20 +0000)
ChangeLog
lily/font-config.cc

index bb959fa4e2001e1c5e246d9a50346ab396329c05..a0541412bfe2a7c66f377c0c909ce460d954fb6e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * lily/font-config.cc (init_fontconfig): be verbose about font path.
+
 2005-04-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * mf/feta-nummer-code.mf (code): add plus glyph.
@@ -42,7 +46,7 @@
 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * scripts/lilypond-book.py (Lilypond_snippet.__init__): 
-       only process options fi they're there.
+       only process options if they're there.
        (write_file_map): add version-seen? to snippet-map.ly
 
 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
index eb8b4f80c00cf8c619b36ddccf2c1e5b1c3d54b1..3c564a2c9ad4580cb6b37209fa2921fd2360eb03 100644 (file)
@@ -42,13 +42,17 @@ init_fontconfig ()
       dirs.push (prefix_directory + "/fonts/type1/");
       dirs.push (prefix_directory + "/fonts/cff/");
       dirs.push (prefix_directory + "/fonts/svg/");
-  }
+    }
+
+  
   
   for (int i = 0; i < dirs.size (); i++)
     {
       String dir = dirs[i];
       if (!FcConfigAppFontAddDir (fcc, (FcChar8 *)dir.to_str0 ()))
-       error (_f ("Failed to add lilypond directory %s", dir));
+       error (_f ("Failed to add lilypond directory %s", dir.to_str0 ()));
+      else if (be_verbose_global_b)
+       progress_indication (_ ("Adding font directory %s", dir.to_str0 ()));
     }
 
   if (be_verbose_global)