Fix punctuation in error message.
authorBen Pfaff <blp@gnu.org>
Thu, 14 Dec 2006 05:26:28 +0000 (05:26 +0000)
committerBen Pfaff <blp@gnu.org>
Thu, 14 Dec 2006 05:26:28 +0000 (05:26 +0000)
src/data/variable.c

index 5513e5ef89a27a8dad7f8c16814a6384e07c4a85..a0ebbe629b99fff767653986eef7b63c1bd5f369 100644 (file)
@@ -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;