X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffrequencies.q;h=0ca83a45b29e95f866aaedc8d521c81b234ced19;hb=64f58bbdab17e4a09b725e713f4f82f567f44076;hp=983f35daa08c8bd3172312101b4867e2070c1fab;hpb=9e41822d23f3c62349751e172a946e832c4a96eb;p=pspp-builds.git diff --git a/src/frequencies.q b/src/frequencies.q index 983f35da..0ca83a45 100644 --- a/src/frequencies.q +++ b/src/frequencies.q @@ -51,6 +51,11 @@ #include "vfm.h" #include "settings.h" #include "chart.h" + +#include "gettext.h" +#define _(msgid) gettext (msgid) +#define N_(msgid) msgid + /* (headers) */ #include "debug-print.h" @@ -692,7 +697,7 @@ not_missing (const void *f_, void *v_) 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. */ @@ -1559,7 +1564,7 @@ freq_tab_to_hist(const struct freq_tab *ft, const struct variable *var) /* 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 ;