X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdescript.q;h=9ba2b569c79dbf69e80e90e493c71579d30ff0de;hb=97d6c6f6b1922621ca013668eba9a9a9f71d60fe;hp=72d5bba4bc35834932b3aa1706a38df2da12c419;hpb=bc963dae9be291ea0a7cccf189d13e00d3797cfd;p=pspp diff --git a/src/descript.q b/src/descript.q index 72d5bba4bc..9ba2b569c7 100644 --- a/src/descript.q +++ b/src/descript.q @@ -20,7 +20,7 @@ /* FIXME: Many possible optimizations. */ #include -#include +#include "error.h" #include #include #include @@ -193,8 +193,6 @@ cmd_descriptives (void) v_variables = NULL; n_variables = 0; - lex_match_id ("DESCRIPTIVES"); - lex_match_id ("CONDESCRIPTIVES"); if (!parse_descriptives (&cmd)) goto lossage; @@ -288,7 +286,7 @@ cmd_descriptives (void) /* Data pass! */ bad_weight = 0; - procedure (precalc, calc, postcalc, NULL); + procedure_with_splits (precalc, calc, postcalc, NULL); if (bad_weight) msg (SW, _("At least one case in the data file had a weight value "