Merge from 2.4:

Sat May  8 23:02:26 2004  Matthias Clasen  <maclas@gmx.de>

	Merge from 2.4:

	* glib/gutils.h: Remove vestigial g_get_codeset().
	* glib/gutils.c (g_get_codeset): Call g_get_charset().
This commit is contained in:
Matthias Clasen 2004-05-09 03:08:19 +00:00 committed by Matthias Clasen
parent b745e58abc
commit 1d4458c448
7 changed files with 40 additions and 15 deletions

View File

@ -1,3 +1,10 @@
Sat May 8 23:02:26 2004 Matthias Clasen <maclas@gmx.de>
Merge from 2.4:
* glib/gutils.h: Remove vestigial g_get_codeset().
* glib/gutils.c (g_get_codeset): Call g_get_charset().
2004-05-06 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number to 2.5.0.

View File

@ -1,3 +1,10 @@
Sat May 8 23:02:26 2004 Matthias Clasen <maclas@gmx.de>
Merge from 2.4:
* glib/gutils.h: Remove vestigial g_get_codeset().
* glib/gutils.c (g_get_codeset): Call g_get_charset().
2004-05-06 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number to 2.5.0.

View File

@ -1,3 +1,10 @@
Sat May 8 23:02:26 2004 Matthias Clasen <maclas@gmx.de>
Merge from 2.4:
* glib/gutils.h: Remove vestigial g_get_codeset().
* glib/gutils.c (g_get_codeset): Call g_get_charset().
2004-05-06 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number to 2.5.0.

View File

@ -1,3 +1,10 @@
Sat May 8 23:02:26 2004 Matthias Clasen <maclas@gmx.de>
Merge from 2.4:
* glib/gutils.h: Remove vestigial g_get_codeset().
* glib/gutils.c (g_get_codeset): Call g_get_charset().
2004-05-06 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number to 2.5.0.

View File

@ -1,3 +1,10 @@
Sat May 8 23:02:26 2004 Matthias Clasen <maclas@gmx.de>
Merge from 2.4:
* glib/gutils.h: Remove vestigial g_get_codeset().
* glib/gutils.c (g_get_codeset): Call g_get_charset().
2004-05-06 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number to 2.5.0.

View File

@ -1230,18 +1230,11 @@ g_nullify_pointer (gpointer *nullify_location)
gchar *
g_get_codeset (void)
{
#ifdef HAVE_CODESET
char *result = nl_langinfo (CODESET);
return g_strdup (result);
#else
#ifdef G_PLATFORM_WIN32
return g_strdup_printf ("CP%d", GetACP ());
#else
/* FIXME: Do something more intelligent based on setlocale (LC_CTYPE, NULL)
*/
return g_strdup ("ISO-8859-1");
#endif
#endif
gchar *charset;
g_get_charset (&charset);
return charset;
}
#ifdef ENABLE_NLS

View File

@ -171,9 +171,6 @@ gchar* g_path_get_dirname (const gchar *file_name);
/* Set the pointer at the specified location to NULL */
void g_nullify_pointer (gpointer *nullify_location);
/* Get the codeset for the current locale */
/* gchar * g_get_codeset (void); */
/* return the environment string for the variable. The returned memory
* must not be freed. */
G_CONST_RETURN gchar* g_getenv (const gchar *variable);