[HarfBuzz] harfbuzz-ng: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Mon Apr 4 12:37:48 PDT 2011


 src/hb-view.c |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit cab6f65bba560ac1651d9152f1ecf12eb88eca74
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Mon Apr 4 15:36:51 2011 -0400

    [hb-view] setlocale (LC_ALL, "")
    
    For now we don't use anything from the locale, but we should default
    to using $LANG, etc, if --language is not specified.  Right?

diff --git a/src/hb-view.c b/src/hb-view.c
index b82d274..3a5b9e7 100644
--- a/src/hb-view.c
+++ b/src/hb-view.c
@@ -35,6 +35,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <math.h>
+#include <locale.h>
 
 #include <glib.h>
 #include <hb-glib.h>
@@ -499,6 +500,8 @@ main (int argc, char **argv)
 {
   cairo_status_t status;
 
+  setlocale (LC_ALL, "");
+
   parse_opts (argc, argv);
 
   FT_Init_FreeType (&ft_library);



More information about the HarfBuzz mailing list