diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-26 03:22:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-26 03:22:56 +0800 |
commit | 497bf574303ec35725bdd8b1d35b0ce52160f53b (patch) | |
tree | 1516e1feb7418a53b2ea16dfb10690e301a6be66 /camel | |
parent | c04a0ac796b1bf878746e3fecf0ec231eb5d0e3f (diff) | |
download | gsoc2013-evolution-497bf574303ec35725bdd8b1d35b0ce52160f53b.tar.gz gsoc2013-evolution-497bf574303ec35725bdd8b1d35b0ce52160f53b.tar.zst gsoc2013-evolution-497bf574303ec35725bdd8b1d35b0ce52160f53b.zip |
remove more debugging printfs
svn path=/trunk/; revision=26525
Diffstat (limited to 'camel')
-rw-r--r-- | camel/camel-url-scanner.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/camel/camel-url-scanner.c b/camel/camel-url-scanner.c index e1b63b27d8..49b53518ad 100644 --- a/camel/camel-url-scanner.c +++ b/camel/camel-url-scanner.c @@ -330,8 +330,6 @@ camel_url_web_end (const char *in, const char *pos, const char *inend, urlmatch_ const char *save; char close_brace; - fprintf (stderr, "camel_url_web_end(%s): %.*s\n", match->pattern, inend - pos, pos); - inptr += strlen (match->pattern); close_brace = url_stop_at_brace (in, match->um_so); @@ -357,7 +355,6 @@ camel_url_web_end (const char *in, const char *pos, const char *inend, urlmatch_ } while (parts < 4); } else if (is_atom (*inptr)) { /* might be a domain or user@domain */ - fprintf (stderr, "found atom (user@domain?)...\n"); save = inptr; while (inptr < inend) { if (!is_atom (*inptr)) |