X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fexpressions%2Fhelpers.c;h=ac17c1cece19ce842bde63ae9495daac3d6e0109;hb=d6850d8b37aed424e3d35ca1439243220678b72a;hp=08f787fea2f30c14099df3c82808623b2e886e30;hpb=7d34380bb2fddca820a6f414564738cc2f70afc9;p=pspp-builds.git diff --git a/src/language/expressions/helpers.c b/src/language/expressions/helpers.c index 08f787fe..ac17c1ce 100644 --- a/src/language/expressions/helpers.c +++ b/src/language/expressions/helpers.c @@ -24,31 +24,14 @@ const struct substring empty_string = {NULL, 0}; -static void -expr_error (void *aux UNUSED, const char *format, ...) -{ - struct msg m; - va_list args; - - m.category = MSG_C_SYNTAX; - m.severity = MSG_S_ERROR; - va_start (args, format); - m.text = xvasprintf (format, args); - m.where.file_name = NULL; - m.where.line_number = 0; - m.where.first_column = 0; - m.where.last_column = 0; - va_end (args); - - msg_emit (&m); -} - double expr_ymd_to_ofs (double year, double month, double day) { int y = year; int m = month; int d = day; + char *error; + double ofs; if (y != year || m != month || d != day) { @@ -57,7 +40,13 @@ expr_ymd_to_ofs (double year, double month, double day) return SYSMIS; } - return calendar_gregorian_to_offset (y, m, d, expr_error, NULL); + ofs = calendar_gregorian_to_offset (y, m, d, &error); + if (error != NULL) + { + msg (SE, "%s", error); + free (error); + } + return ofs; } double @@ -348,6 +337,7 @@ add_months (double date, int months, enum date_sum_method method) { int y, m, d, yd; double output; + char *error; calendar_offset_to_gregorian (date / DAY_S, &y, &m, &d, &yd); y += months / 12; @@ -367,9 +357,14 @@ add_months (double date, int months, enum date_sum_method method) if (method == SUM_CLOSEST && d > calendar_days_in_month (y, m)) d = calendar_days_in_month (y, m); - output = calendar_gregorian_to_offset (y, m, d, expr_error, NULL); + output = calendar_gregorian_to_offset (y, m, d, &error); if (output != SYSMIS) output = (output * DAY_S) + fmod (date, DAY_S); + else + { + msg (SE, "%s", error); + free (error); + } return output; }