remove debug spew
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 31 Jul 2007 17:04:10 +0000 (17:04 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 31 Jul 2007 17:04:10 +0000 (17:04 +0000)
svn path=/trunk/; revision=5657

ChangeLog
glib/gregex.c

index 701e34a9ae379524c1b9e80a9729fa388ffc4c5f..6c513381ce18008f10af48c7f8627d6785e446f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-31  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gregex.c: Remove debug spew
+
 2007-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gunidecomp.c:
index 3b31d98a4d6c3d73407ab05b7272875de2a1ee19..0a5a0089d0b7d0b382ce9c56c485bb71a9dcb8ec 100644 (file)
@@ -922,13 +922,6 @@ g_regex_new (const gchar         *pattern,
       compile_options |= PCRE_NEWLINE_ANY;
     }
 
-  g_print ("compile opts: %x\n", compile_options);
-  if (compile_options & PCRE_UTF8)
-    g_print ("\tPCRE_UTF8\n");
-  if (compile_options & PCRE_NO_UTF8_CHECK)
-    g_print ("\tPCRE_NO_UTF8_CHECK\n");
-  if (compile_options & PCRE_NEWLINE_ANY)
-    g_print ("\tPCRE_NEWLINE_ANY\n");
   /* compile the pattern */
   re = pcre_compile (pattern, compile_options, &errmsg, &erroffset, NULL);