Added a --enable-debug option to configure and
[pspp-builds.git] / src / mis-val.c
index a048e405bba22b9e50c2a3d3f15ba87046eb84f7..23d803fcf05e884ed33286d534625eb22caf9718 100644 (file)
@@ -27,8 +27,6 @@
 #include "str.h"
 #include "var.h"
 
-#undef DEBUGGING
-/*#define DEBUGGING 1*/
 #include "debug-print.h"
 
 #if DEBUGGING
@@ -62,10 +60,6 @@ cmd_missing_values (void)
   lex_match_id ("VALUES");
   while (token != '.')
     {
-#if __CHECKER__
-      memset (missing, 0, sizeof missing);
-#endif
-
       if (!parse_varnames ())
        goto fail;
 
@@ -94,7 +88,7 @@ cmd_missing_values (void)
       free (v);
     }
 
-#if DEBUGGING
+#if 0 && DEBUGGING
   debug_print ();
 #endif
 
@@ -363,7 +357,7 @@ copy_missing_values (struct variable *dest, const struct variable *src)
 \f
 /* Debug output. */
 
-#if DEBUGGING
+#if 0 && DEBUGGING
 static void
 debug_print (void)
 {