remove debug spew

svn path=/trunk/; revision=5657
This commit is contained in:
Matthias Clasen 2007-07-31 17:04:10 +00:00
parent 49471f60a9
commit 9b4f6314dd
2 changed files with 4 additions and 7 deletions

View File

@ -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:

View 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);