X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmis-val.c;h=1e07fcfd54b2deffff98f5d66eaf0aa9c708c544;hb=3a7fba81ceae5b049d0f7d671e9e3c3c43bbf703;hp=a048e405bba22b9e50c2a3d3f15ba87046eb84f7;hpb=4944c86a9318bc5b5578ab145a95c116ffd2c9fd;p=pspp-builds.git diff --git a/src/mis-val.c b/src/mis-val.c index a048e405..1e07fcfd 100644 --- a/src/mis-val.c +++ b/src/mis-val.c @@ -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 @@ -110,7 +104,7 @@ parse_varnames (void) { int i; - if (!parse_variables (NULL, &v, &nv, PV_SAME_TYPE)) + if (!parse_variables (default_dict, &v, &nv, PV_SAME_TYPE)) return 0; if (!lex_match ('(')) { @@ -363,7 +357,7 @@ copy_missing_values (struct variable *dest, const struct variable *src) /* Debug output. */ -#if DEBUGGING +#if 0 && DEBUGGING static void debug_print (void) {