move more things in the lib-ui.
[apps/madmutt.git] / main.c
diff --git a/main.c b/main.c
index 8f1c8b4..eace540 100644 (file)
--- a/main.c
+++ b/main.c
@@ -31,7 +31,6 @@
 #include <lib-lib/str.h>
 #include <lib-lib/macros.h>
 #include <lib-lib/file.h>
-#include <lib-lib/debug.h>
 #include <lib-lib/url.h>
 
 #include <lib-sys/mutt_signal.h>
@@ -162,9 +161,6 @@ options:\n\
   -a <file>\tattach a file to the message\n\
   -b <address>\tspecify a blind carbon-copy (BCC) address\n\
   -c <address>\tspecify a carbon-copy (CC) address");
-#if DEBUG
-  puts _("  -d <level>\tlog debugging output to ~/.madmuttdebug0");
-#endif
   puts _("\
   -e <command>\tspecify a command to be executed after initialization\n\
   -f <file>\tspecify which mailbox to read\n\
@@ -261,12 +257,6 @@ static void show_version (void)
 
   puts (_("Compile Options:"));
 
-#ifdef DEBUG
-  puts ("  +DEBUG");
-#else
-  puts ("  -DEBUG");
-#endif
-
   puts (
 #ifdef HOMESPOOL
          "  +HOMESPOOL  "
@@ -413,11 +403,6 @@ static void show_version (void)
 #else
          "-HAVE_ICONV  "
 #endif
-#if ICONV_NONTRANS
-         "+ICONV_NONTRANS  "
-#else
-         "-ICONV_NONTRANS  "
-#endif
 #ifdef HAVE_LIBIDN
          "+HAVE_LIBIDN  "
 #else
@@ -548,10 +533,10 @@ int main (int argc, char **argv)
 #ifdef USE_NNTP
   while ((i =
           getopt (argc, argv,
-                  "A:a:b:F:f:c:d:e:g:GH:s:i:hm:npQ:RTtvyzZ")) != EOF)
+                  "A:a:b:F:f:c:e:g:GH:s:i:hm:npQ:RTtvyzZ")) != EOF)
 #else
   while ((i =
-          getopt (argc, argv, "A:a:b:F:f:c:d:e:H:s:i:hm:npQ:RTtvyzZ")) != EOF)
+          getopt (argc, argv, "A:a:b:F:f:c:e:H:s:i:hm:npQ:RTtvyzZ")) != EOF)
 #endif
     switch (i) {
     case 'A':
@@ -587,17 +572,6 @@ int main (int argc, char **argv)
         msg->env->cc = rfc822_parse_adrlist (msg->env->cc, optarg);
       break;
 
-    case 'd':
-      {
-        char buf[LONG_STRING];
-        int level = atoi (optarg);
-
-        snprintf (buf, sizeof (buf), "set debug_level=%d", level);
-        commands = mutt_add_list (commands, buf);
-        debug_setlevel (level);
-      }
-      break;
-
     case 't':
       dump_variables = 2;
       break;