LIST: Improve wording of error messages.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 15 Jan 2016 14:26:28 +0000 (06:26 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 15 Jan 2016 14:26:40 +0000 (06:26 -0800)
Suggested by Elias Estatistics <estatisticseu@gmail.com>.

src/language/data-io/list.c

index e3c38c7a6d1a52d0eeba7d52837f1cf49b9475d8..e9e0e326c2234b5f823e1d0fc7fa29dac894bd42 100644 (file)
@@ -228,15 +228,15 @@ cmd_list (struct lexer *lexer, struct dataset *ds)
 
   if (cmd.first < 1)
     {
-      msg (SW, _("The first case (%ld) to list is less than 1.  The value is "
-                 "being reset to 1."), cmd.first);
+      msg (SW, _("The first case (%ld) to list is numbered less than 1.  "
+                 "The value is being reset to 1."), cmd.first);
       cmd.first = 1;
     }
 
   if (cmd.last < 1)
     {
-      msg (SW, _("The last case (%ld) to list is less than 1.  The value is "
-                 "being reset to 1."), cmd.last);
+      msg (SW, _("The last case (%ld) to list is numbered less than 1.  "
+                 "The value is being reset to 1."), cmd.last);
       cmd.last = 1;
     }