Merge from 2.4:
authorMatthias Clasen <maclas@gmx.de>
Sun, 9 May 2004 03:08:19 +0000 (03:08 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 9 May 2004 03:08:19 +0000 (03:08 +0000)
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().

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gutils.c
glib/gutils.h

index e5918b9..c4e4603 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index e5918b9..c4e4603 100644 (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.
index e5918b9..c4e4603 100644 (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.
index e5918b9..c4e4603 100644 (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.
index e5918b9..c4e4603 100644 (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.
index 98c952c..90e83d3 100644 (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
index c5c1300..731cf1e 100644 (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);