From: Ben Pfaff Date: Thu, 14 Dec 2006 05:26:28 +0000 (+0000) Subject: Fix punctuation in error message. X-Git-Tag: v0.6.0~643 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=378ff5f35086629f4656c5e46934d1ec51ec00ca;p=pspp-builds.git Fix punctuation in error message. --- diff --git a/src/data/variable.c b/src/data/variable.c index 5513e5ef..a0ebbe62 100644 --- a/src/data/variable.c +++ b/src/data/variable.c @@ -234,7 +234,7 @@ var_is_valid_name (const char *name, bool issue_error) if (!lex_is_id1 (name[0])) { if (issue_error) - msg (SE, _("Character `%c' (in %s), may not appear " + msg (SE, _("Character `%c' (in %s) may not appear " "as the first character in a variable name."), name[0], name); return false;