X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Flexer%2Fvalue-parser.c;h=9d3d77f91656efee82cb8eac2d8b14b298a97ef1;hb=de662c8f00fcf6b758da1531bfed3d43e0a63df8;hp=6fa4319a6584fdedda62f9df0532e08385e416a0;hpb=774441e68b4d2e3a4b5c6975e9614dcd4369955e;p=pspp diff --git a/src/language/lexer/value-parser.c b/src/language/lexer/value-parser.c index 6fa4319a65..9d3d77f916 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, 2010 Free Software Foundation, Inc. + Copyright (C) 2005, 2006, 2009, 2010, 2011 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 @@ -25,6 +25,7 @@ #include "data/value.h" #include "language/lexer/lexer.h" #include "libpspp/cast.h" +#include "libpspp/i18n.h" #include "libpspp/message.h" #include "libpspp/str.h" @@ -61,9 +62,9 @@ parse_num_range (struct lexer *lexer, if (*y < *x) { double t; - msg (SW, _("Low end of range (%g) is below high end (%g). " - "The range will be treated as reversed."), - *x, *y); + msg (SW, _("The high end of the range (%g) is below the low end (%g). " + "The range will be treated as if reversed."), + *y, *x); t = *x; *x = *y; *y = t; @@ -103,9 +104,12 @@ parse_number (struct lexer *lexer, double *x, const enum fmt_type *format) else if (lex_is_string (lexer) && 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, NULL, &v, 0); + + assert (fmt_get_category (*format) != FMT_CAT_STRING); + + if (!data_in_msg (lex_tokss (lexer), "UTF-8", *format, &v, 0, NULL)) + return false; + lex_get (lexer); *x = v.f; if (*x == SYSMIS) @@ -125,21 +129,18 @@ parse_number (struct lexer *lexer, double *x, const enum fmt_type *format) } } -/* Parses the current token from LEXER into value V, which must - already have been initialized with the specified WIDTH. - Returns true if successful, false otherwise. */ +/* Parses the current token from LEXER into value V, which must already have + been initialized with the specified VAR's WIDTH. Returns true if + successful, false otherwise. */ bool -parse_value (struct lexer *lexer, union value *v, int width) +parse_value (struct lexer *lexer, union value *v, const struct variable *var) { + int width = var_get_width (var); if (width == 0) - { - if (!lex_force_num (lexer)) - return false; - v->f = lex_tokval (lexer); - } + return parse_number (lexer, &v->f, &var_get_print_format (var)->type); else if (lex_force_string (lexer)) { - const char *s = ds_cstr (lex_tokstr (lexer)); + const char *s = lex_tokcstr (lexer); value_copy_str_rpad (v, width, CHAR_CAST_BUG (const uint8_t *, s), ' '); } else