pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/frequencies.q


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/frequencies.q
Date: Sun, 07 Aug 2005 00:39:31 -0400

Index: pspp/src/frequencies.q
diff -u pspp/src/frequencies.q:1.38 pspp/src/frequencies.q:1.39
--- pspp/src/frequencies.q:1.38 Sun Jul 31 21:42:46 2005
+++ pspp/src/frequencies.q      Sun Aug  7 04:39:28 2005
@@ -697,7 +697,7 @@
   const struct freq *f = f_;
   struct variable *v = v_;
 
-  return !is_missing (&f->v, v);
+  return !mv_is_value_missing (&v->miss, &f->v);
 }
 
 /* Summarizes the frequency table data for variable V. */
@@ -1564,7 +1564,7 @@
   /* Find out the extremes of the x value */
   for ( frq = hsh_first(fh, &hi); frq != 0; frq = hsh_next(fh, &hi) ) 
     {
-      if ( is_missing(&frq->v, var))
+      if ( mv_is_value_missing(&var->miss, &frq->v))
        continue;
 
       if ( frq->v.f < x_min ) x_min = frq->v.f ;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]