X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fformats.c;h=d18606a5ce2eda8e4d9508e406e7170f7c3d9231;hb=a9acce47d67e0ab35ce1690e4f1b1ac0121c2d78;hp=4bc6e3f47767335bba767099bc38a76be1d85c8e;hpb=84e4d346b557748b62d43158c1b50f655e357f9f;p=pspp-builds.git diff --git a/src/language/dictionary/formats.c b/src/language/dictionary/formats.c index 4bc6e3f4..d18606a5 100644 --- a/src/language/dictionary/formats.c +++ b/src/language/dictionary/formats.c @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . +/* PSPP - a program for statistical analysis. + Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -42,28 +39,28 @@ enum FORMATS_WRITE = 002 }; -static int internal_cmd_formats (int); +static int internal_cmd_formats (struct lexer *, struct dataset *ds, int); int -cmd_print_formats (void) +cmd_print_formats (struct lexer *lexer, struct dataset *ds) { - return internal_cmd_formats (FORMATS_PRINT); + return internal_cmd_formats (lexer, ds, FORMATS_PRINT); } int -cmd_write_formats (void) +cmd_write_formats (struct lexer *lexer, struct dataset *ds) { - return internal_cmd_formats (FORMATS_WRITE); + return internal_cmd_formats (lexer, ds, FORMATS_WRITE); } int -cmd_formats (void) +cmd_formats (struct lexer *lexer, struct dataset *ds) { - return internal_cmd_formats (FORMATS_PRINT | FORMATS_WRITE); + return internal_cmd_formats (lexer, ds, FORMATS_PRINT | FORMATS_WRITE); } -int -internal_cmd_formats (int which) +static int +internal_cmd_formats (struct lexer *lexer, struct dataset *ds, int which) { /* Variables. */ struct variable **v; @@ -80,24 +77,24 @@ internal_cmd_formats (int which) for (;;) { - if (token == '.') + if (lex_token (lexer) == '.') break; - if (!parse_variables (default_dict, &v, &cv, PV_NUMERIC)) + if (!parse_variables (lexer, dataset_dict (ds), &v, &cv, PV_NUMERIC)) return CMD_FAILURE; - type = v[0]->type; + type = var_get_type (v[0]); - if (!lex_match ('(')) + if (!lex_match (lexer, '(')) { msg (SE, _("`(' expected after variable list.")); goto fail; } - if (!parse_format_specifier (&f) - || !check_output_specifier (&f, true) - || !check_specifier_type (&f, NUMERIC, true)) + if (!parse_format_specifier (lexer, &f) + || !fmt_check_output (&f) + || !fmt_check_type_compat (&f, VAL_NUMERIC)) goto fail; - if (!lex_match (')')) + if (!lex_match (lexer, ')')) { msg (SE, _("`)' expected after output format.")); goto fail; @@ -106,9 +103,9 @@ internal_cmd_formats (int which) for (i = 0; i < cv; i++) { if (which & FORMATS_PRINT) - v[i]->print = f; + var_set_print_format (v[i], &f); if (which & FORMATS_WRITE) - v[i]->write = f; + var_set_write_format (v[i], &f); } free (v); v = NULL;