X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fdictionary%2Fformats.c;h=384e45a9d75360881a12cbc08f2f38164bc61b5d;hb=8acca2de53c1852f38726f70fc6516b34732a79f;hp=9e62d9930b9d7b3c21efa82cc5c920b3e80c9569;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp-builds.git diff --git a/src/language/dictionary/formats.c b/src/language/dictionary/formats.c index 9e62d993..384e45a9 100644 --- a/src/language/dictionary/formats.c +++ b/src/language/dictionary/formats.c @@ -1,5 +1,5 @@ /* PSPP - computes sample statistics. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. Written by Ben Pfaff . This program is free software; you can redistribute it and/or @@ -18,49 +18,52 @@ 02110-1301, USA. */ #include + #include #include #include -#include "command.h" -#include "message.h" -#include "lexer.h" -#include "misc.h" -#include "str.h" -#include "variable.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "gettext.h" #define _(msgid) gettext (msgid) -#include "debug-print.h" - enum { FORMATS_PRINT = 001, FORMATS_WRITE = 002 }; -static int internal_cmd_formats (int); +static int internal_cmd_formats (struct dataset *ds, int); int -cmd_print_formats (void) +cmd_print_formats (struct dataset *ds) { - return internal_cmd_formats (FORMATS_PRINT); + return internal_cmd_formats (ds, FORMATS_PRINT); } int -cmd_write_formats (void) +cmd_write_formats (struct dataset *ds) { - return internal_cmd_formats (FORMATS_WRITE); + return internal_cmd_formats (ds, FORMATS_WRITE); } int -cmd_formats (void) +cmd_formats (struct dataset *ds) { - return internal_cmd_formats (FORMATS_PRINT | FORMATS_WRITE); + return internal_cmd_formats (ds, FORMATS_PRINT | FORMATS_WRITE); } -int -internal_cmd_formats (int which) +static int +internal_cmd_formats (struct dataset *ds, int which) { /* Variables. */ struct variable **v; @@ -80,18 +83,18 @@ internal_cmd_formats (int which) if (token == '.') break; - if (!parse_variables (default_dict, &v, &cv, PV_NUMERIC)) - return CMD_PART_SUCCESS_MAYBE; + if (!parse_variables (dataset_dict (ds), &v, &cv, PV_NUMERIC)) + return CMD_FAILURE; type = v[0]->type; if (!lex_match ('(')) { - msg (SE, _("`(' expected after variable list")); + msg (SE, _("`(' expected after variable list.")); goto fail; } - if (!parse_format_specifier (&f, 0) - || !check_output_specifier (&f, true) - || !check_specifier_type (&f, NUMERIC, true)) + if (!parse_format_specifier (&f) + || !fmt_check_output (&f) + || !fmt_check_type_compat (&f, NUMERIC)) goto fail; if (!lex_match (')')) @@ -114,5 +117,5 @@ internal_cmd_formats (int which) fail: free (v); - return CMD_PART_SUCCESS_MAYBE; + return CMD_FAILURE; }