move mutt_get_parameter -> parameter_getval into mime.c
[apps/madmutt.git] / query.c
diff --git a/query.c b/query.c
index ce1f052..2a60afa 100644 (file)
--- a/query.c
+++ b/query.c
@@ -20,7 +20,6 @@
 #include <lib-lib/macros.h>
 #include <lib-lib/file.h>
 #include <lib-lib/mapping.h>
-#include <lib-lib/debug.h>
 
 #include <lib-ui/menu.h>
 
@@ -89,7 +88,6 @@ static QUERY *run_query (char *s, int quiet)
   mutt_expand_file_fmt (cmd, sizeof (cmd), QueryCmd, s);
 
   if ((thepid = mutt_create_filter (cmd, NULL, &fp, NULL)) < 0) {
-    debug_print (1, ("unable to fork command: %s\n", cmd));
     return 0;
   }
   if (!quiet)
@@ -132,7 +130,6 @@ static QUERY *run_query (char *s, int quiet)
   p_delete(&buf);
   fclose (fp);
   if (mutt_wait_filter (thepid)) {
-    debug_print (1, ("Error: %s\n", msg));
     if (!quiet)
       mutt_error ("%s", msg);
   }