X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fvalue-parser.c;h=c492658e28753ba5e3a9fe7780abf9a2fc7ba12c;hb=d775f576e4ffc0973c5f183b57b2baa089f555dc;hp=2cf9cf2bb9ad71f91d6ad301c4625d6b2a7cd012;hpb=e588208caf725f595d63a07ddd2116331173e81d;p=pspp diff --git a/src/language/lexer/value-parser.c b/src/language/lexer/value-parser.c index 2cf9cf2bb9..c492658e28 100644 --- a/src/language/lexer/value-parser.c +++ b/src/language/lexer/value-parser.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2005, 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 @@ -15,14 +15,18 @@ along with this program. If not, see . */ #include + #include "value-parser.h" + #include -#include -#include -#include "lexer.h" -#include -#include -#include + +#include "data/data-in.h" +#include "data/format.h" +#include "data/value.h" +#include "language/lexer/lexer.h" +#include "libpspp/cast.h" +#include "libpspp/message.h" +#include "libpspp/str.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -99,8 +103,9 @@ parse_number (struct lexer *lexer, double *x, const enum fmt_type *format) else if (lex_token (lexer) == T_STRING && format != NULL) { union value v; + assert (! (fmt_get_category (*format) & ( FMT_CAT_STRING ))); data_in (ds_ss (lex_tokstr (lexer)), LEGACY_NATIVE, - *format, 0, 0, 0, &v, 0); + *format, 0, 0, 0, NULL, &v, 0); lex_get (lexer); *x = v.f; if (*x == SYSMIS) @@ -132,12 +137,13 @@ parse_value (struct lexer *lexer, union value *v, int width) return false; v->f = lex_tokval (lexer); } - else + else if (lex_force_string (lexer)) { - if (!lex_force_string (lexer)) - return false; - value_copy_str_rpad (v, width, ds_cstr (lex_tokstr (lexer)), ' '); + const char *s = ds_cstr (lex_tokstr (lexer)); + value_copy_str_rpad (v, width, CHAR_CAST_BUG (const uint8_t *, s), ' '); } + else + return false; lex_get (lexer);