sys-file-reader: Avoid redundant "within system file" in messages.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 30 Jan 2011 23:27:06 +0000 (15:27 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 4 Feb 2011 04:34:29 +0000 (20:34 -0800)
All system file message already state the system file's name, which should
be enough identification.

src/data/sys-file-reader.c

index 84342369c37fd11a117f202d84aac2698aaee565..d2f48fb41d64df642fa38c69e2bbc5c58c5b98bd 100644 (file)
@@ -604,9 +604,7 @@ read_variable_record (struct sfm_reader *r, struct dictionary *dict,
     sys_error (r, _("Bad width %d for variable %s."), width, name);
   var = dict_create_var (dict, name, width);
   if (var == NULL)
-    sys_error (r,
-               _("Duplicate variable name `%s' within system file."),
-               name);
+    sys_error (r, _("Duplicate variable name `%s'."), name);
 
   /* Set the short name the same as the long name. */
   var_set_short_name (var, 0, var_get_name (var));
@@ -1283,8 +1281,7 @@ read_long_var_name_map (struct sfm_reader *r, size_t size, size_t count,
       if (strcasecmp (var_get_short_name (var, 0), long_name)
           && dict_lookup_var (dict, long_name) != NULL)
         {
-          sys_warn (r, _("Duplicate long variable name `%s' "
-                         "within system file."), long_name);
+          sys_warn (r, _("Duplicate long variable name `%s'."), long_name);
           continue;
         }