]> git.donarmstrong.com Git - lilypond.git/commitdiff
(init_fontconfig): add operator pacification
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 6 Apr 2005 10:48:16 +0000 (10:48 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 6 Apr 2005 10:48:16 +0000 (10:48 +0000)
message.

ChangeLog
lily/font-config.cc

index ee7b8e5ee2eee498f0e9148f30d041af725ec626..dd5dcff8328838aaa76e84c686aaae9f83cf742a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * lily/font-config.cc (init_fontconfig): add operator pacification
+       message.
+
        * mf/aybabtu.pe.in (i): generate PFAAybabtu.pfa
 
        * buildscripts/gen-emmentaler-scripts.py (i): generate
index e75561942fe67b4e790f784ffe997488dd40024b..213f87f4e2e815f07f06721fecbdbd5bfed52c29 100644 (file)
@@ -19,6 +19,9 @@
 void
 init_fontconfig ()
 {
+  if (be_verbose_global)
+    progress (_("Initializing FontConfig ..."));
+  
   if (!FcInit ())
     error (_ ("FontConfig failed to initialize"));
 
@@ -36,6 +39,9 @@ init_fontconfig ()
       if (!FcConfigAppFontAddDir (fcc, (FcChar8 *)dir.to_str0 ()))
        error (_f ("Failed to add lilypond directory %s", dir));
     }
+
+  if (be_verbose_global)
+    progress ("\n");
 }
 
 #else