+Tue Oct 31 18:09:24 2006 Ben Pfaff <blp@gnu.org>
+
+ * data-in.c (parse_trailer): Fix error message.
+
Sat Oct 28 11:56:50 2006 Ben Pfaff <blp@gnu.org>
* format.c (fmt_is_binary): New function.
if (!have_char (i))
return true;
- dls_error (i, _("Trailing garbage \"%s\" following date."), i->s);
+ dls_error (i, _("Trailing garbage \"%.*s\" following date."),
+ (int) (i->e - i->s), i->s);
return false;
}
+Tue Oct 31 18:09:32 2006 Ben Pfaff <blp@gnu.org>
+
+ * range-parser.c (parse_number): Fix error message.
+
Sat Oct 28 16:17:18 WST 2006 John Darrington <john@darrington.wattle.id.au>
* lexer.c lexer.h: Added a line_buffer (previously an external
*x = v.f;
if (*x == SYSMIS)
{
- lex_error (_("System-missing value is not valid here."));
+ msg (SE, _("System-missing value is not valid here."));
return false;
}
return true;
int comma_cnt, dot_cnt;
/* Count commas and periods. There must be exactly three of
- one or the other, except that an apostrophe acts escapes a
+ one or the other, except that an apostrophe escapes a
following comma or period. */
comma_cnt = dot_cnt = 0;
for (sp = cc_string; *sp; sp++)