remove most of the debug code: often makes the code unreadable, for little
[apps/madmutt.git] / mutt_idna.c
index 1419dd9..e2919ff 100644 (file)
@@ -20,8 +20,6 @@
 #include "charset.h"
 #include "mutt_idna.h"
 
-#include "lib/debug.h"
-
 /* The low-level interface we use. */
 
 #ifndef HAVE_LIBIDN
@@ -71,7 +69,6 @@ int mutt_idna_to_local (const char *in, char **out, int flags)
     if (!irrev && idna_to_ascii_8z (tmp, &t2, 1) != IDNA_SUCCESS)
       irrev = 1;
     if (!irrev && ascii_strcasecmp (t2, in)) {
-      debug_print (1, ("not reversible. in = '%s', t2 = '%s'.\n", in, t2));
       irrev = 1;
     }