X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fvector.c;h=b0d696154b7f212a5c790a87efe7d69b1debd31a;hb=8d1e072157ee3c8273e328c491be3c8bf57452da;hp=bf257194613f9a1840e6f1660e224a2249ef0aaf;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/language/dictionary/vector.c b/src/language/dictionary/vector.c index bf25719461..b0d696154b 100644 --- a/src/language/dictionary/vector.c +++ b/src/language/dictionary/vector.c @@ -18,8 +18,8 @@ #include +#include "data/dataset.h" #include "data/format.h" -#include "data/procedure.h" #include "data/dictionary.h" #include "data/variable.h" #include "language/command.h" @@ -50,7 +50,8 @@ cmd_vector (struct lexer *lexer, struct dataset *ds) size_t vector_cnt, vector_cap; /* Get the name(s) of the new vector(s). */ - if (!lex_force_id (lexer)) + if (!lex_force_id (lexer) + || !dict_id_is_valid (dict, lex_tokcstr (lexer), true)) return CMD_CASCADING_FAILURE; vectors = NULL; @@ -151,19 +152,17 @@ cmd_vector (struct lexer *lexer, struct dataset *ds) goto fail; } - /* Check that none of the variables exist and that - their names are no more than VAR_NAME_LEN bytes - long. */ + /* Check that none of the variables exist and that their names are + not excessively long. */ for (i = 0; i < vector_cnt; i++) { int j; for (j = 0; j < var_cnt; j++) { char *name = xasprintf ("%s%d", vectors[i], j + 1); - if (strlen (name) > VAR_NAME_LEN) + if (!dict_id_is_valid (dict, name, true)) { free (name); - msg (SE, _("%s is too long for a variable name."), name); goto fail; } if (dict_lookup_var (dict, name)) @@ -200,7 +199,7 @@ cmd_vector (struct lexer *lexer, struct dataset *ds) while (lex_match (lexer, T_SLASH)); pool_destroy (pool); - return lex_end_of_command (lexer); + return CMD_SUCCESS; fail: pool_destroy (pool);