X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fmissing-values.c;h=4a14ee195b8c91f26cf0e589497f2d607bfb325c;hb=17753a2ef0a1e33b5478a970c747a2a57454ee07;hp=aa3ce698206ba652cef8a299c6f6926095329881;hpb=04d2c99833753252b724dd9d4f15cc3a80b6bec8;p=pspp-builds.git diff --git a/src/language/dictionary/missing-values.c b/src/language/dictionary/missing-values.c index aa3ce698..4a14ee19 100644 --- a/src/language/dictionary/missing-values.c +++ b/src/language/dictionary/missing-values.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2009, 2010 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 @@ -29,7 +29,6 @@ #include #include #include -#include #include #include "gettext.h" @@ -38,29 +37,26 @@ int cmd_missing_values (struct lexer *lexer, struct dataset *ds) { - struct variable **v; + struct variable **v = NULL; size_t nv; int retval = CMD_FAILURE; bool deferred_errors = false; - while (lex_token (lexer) != '.') + while (lex_token (lexer) != T_ENDCMD) { size_t i; if (!parse_variables (lexer, dataset_dict (ds), &v, &nv, PV_NONE)) goto done; - if (!lex_match (lexer, '(')) - { - lex_error (lexer, _("expecting `('")); - goto done; - } + if (!lex_force_match (lexer, T_LPAREN)) + goto done; for (i = 0; i < nv; i++) var_clear_missing_values (v[i]); - if (!lex_match (lexer, ')')) + if (!lex_match (lexer, T_RPAREN)) { struct missing_values mv; @@ -78,7 +74,7 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) if (var_is_numeric (v[0])) { mv_init (&mv, 0); - while (!lex_match (lexer, ')')) + while (!lex_match (lexer, T_RPAREN)) { enum fmt_type type = var_get_print_format (v[0])->type; double x, y; @@ -93,15 +89,15 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) if (!ok) deferred_errors = true; - lex_match (lexer, ','); + lex_match (lexer, T_COMMA); } } else { mv_init (&mv, MV_MAX_STRING); - while (!lex_match (lexer, ')')) + while (!lex_match (lexer, T_RPAREN)) { - char value[MV_MAX_STRING]; + uint8_t value[MV_MAX_STRING]; size_t length; if (!lex_force_string (lexer)) @@ -110,7 +106,7 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) break; } - length = ds_length (lex_tokstr (lexer)); + length = ss_length (lex_tokss (lexer)); if (length > MV_MAX_STRING) { msg (SE, _("Truncating missing value to maximum " @@ -119,13 +115,13 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) length = MV_MAX_STRING; } memset (value, ' ', MV_MAX_STRING); - memcpy (value, ds_data (lex_tokstr (lexer)), length); + memcpy (value, ss_data (lex_tokss (lexer)), length); if (!mv_add_str (&mv, value)) deferred_errors = true; lex_get (lexer); - lex_match (lexer, ','); + lex_match (lexer, T_COMMA); } } @@ -145,7 +141,7 @@ cmd_missing_values (struct lexer *lexer, struct dataset *ds) mv_destroy (&mv); } - lex_match (lexer, '/'); + lex_match (lexer, T_SLASH); free (v); v = NULL; }