Do not call setlocale, let gtk handle this.
This commit is contained in:
parent
6bc5150ea2
commit
6982b226b8
1 changed files with 1 additions and 6 deletions
|
@ -121,11 +121,6 @@ static void
|
||||||
locale_init (void)
|
locale_init (void)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_NLS
|
#ifdef ENABLE_NLS
|
||||||
|
|
||||||
#if HAVE_LOCALE_H
|
|
||||||
setlocale (LC_ALL, "");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
bindtextdomain (GETTEXT_PACKAGE, MIDORI_LOCALEDIR);
|
bindtextdomain (GETTEXT_PACKAGE, MIDORI_LOCALEDIR);
|
||||||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||||
textdomain (GETTEXT_PACKAGE);
|
textdomain (GETTEXT_PACKAGE);
|
||||||
|
@ -320,7 +315,7 @@ main (int argc, char** argv)
|
||||||
gjs_script_from_file (js_context, argv[1], &exception);
|
gjs_script_from_file (js_context, argv[1], &exception);
|
||||||
JSGlobalContextRelease (js_context);
|
JSGlobalContextRelease (js_context);
|
||||||
if (!exception)
|
if (!exception)
|
||||||
return ;
|
return 0;
|
||||||
printf ("%s - Exception: %s\n", argv[1], exception);
|
printf ("%s - Exception: %s\n", argv[1], exception);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue