X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Foneway.q;h=cda3c17b4bffcb96e7561f8ba96912c5a870bae2;hb=6492b3b49661963dc6d78201a1eb3927fdf54b68;hp=a400c1da6f0f08b54e23cbe98d47973be275e2e2;hpb=a4ae68f966bc574326d429119878e733069ced14;p=pspp-builds.git diff --git a/src/language/stats/oneway.q b/src/language/stats/oneway.q index a400c1da..cda3c17b 100644 --- a/src/language/stats/oneway.q +++ b/src/language/stats/oneway.q @@ -57,10 +57,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA /* (specification) "ONEWAY" (oneway_): *^variables=custom; - +missing=miss:!analysis/listwise, - incl:include/!exclude; - contrast= double list; - statistics[st_]=descriptives,homogeneity. + missing=miss:!analysis/listwise, + incl:include/!exclude; + +contrast= double list; + +statistics[st_]=descriptives,homogeneity. */ /* (declarations) */ /* (functions) */ @@ -121,7 +121,7 @@ cmd_oneway(void) int i; bool ok; - if ( !parse_oneway(&cmd) ) + if ( !parse_oneway(&cmd, NULL) ) return CMD_FAILURE; /* If /MISSING=INCLUDE is set, then user missing values are ignored */ @@ -223,7 +223,7 @@ output_oneway(void) /* Parser for the variables sub command */ static int -oneway_custom_variables(struct cmd_oneway *cmd UNUSED) +oneway_custom_variables(struct cmd_oneway *cmd UNUSED, void *aux UNUSED) { lex_match('=');