From 9b4f6314dd335a080984bc9f90e13fa0bd6b222b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 31 Jul 2007 17:04:10 +0000 Subject: [PATCH] remove debug spew svn path=/trunk/; revision=5657 --- ChangeLog | 4 ++++ glib/gregex.c | 7 ------- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 701e34a9..6c513381 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-07-31 Matthias Clasen + + * glib/gregex.c: Remove debug spew + 2007-07-21 Matthias Clasen * glib/gunidecomp.c: diff --git a/glib/gregex.c b/glib/gregex.c index 3b31d98a..0a5a0089 100644 --- a/glib/gregex.c +++ b/glib/gregex.c @@ -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); -- 2.34.1