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 701e34a..6c51338 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 3b31d98..0a5a008 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);