Remove manual UTF-8 -> Latin1 conversion for stuff fed to g_print.
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 10 Apr 2002 23:09:15 +0000 (23:09 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 10 Apr 2002 23:09:15 +0000 (23:09 +0000)
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
stuff fed to g_print.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/patterntest.c

index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 09fdefeb5c18a2d271cf802765124c1aa1e5afdf..6c0ddfc520bd0bfd8b0e7a5691ea26d4a2c6fdf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-11  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
+       stuff fed to g_print.
+
 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
index 81c49b905be8280c91acb7cbc24a7ca7e0f266a3..2bb77bd45f2b2e17c9c97dc579b8f2b4df25b5ff 100644 (file)
@@ -68,9 +68,10 @@ match_type_name (GMatchType match_type)
     }
 }
 
-/* this leakes memory, but we don't care */
-
-#define utf8(str) g_convert (str, -1, "Latin1", "UTF-8", NULL, NULL, NULL)
+/* This leakes memory, but we don't care. The utf8 macro used to convert utf8 
+   back to Latin1 for feeding it to g_print. As of 2.0.1, g_print expects utf8,
+   so this is no longer necessary */
+#define utf8(str) str
 #define latin1(str) g_convert (str, -1, "UTF-8", "Latin1", NULL, NULL, NULL)
 
 static gboolean