Corrected warning message which made no logical sense. 20131020030504/pspp
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 19 Oct 2013 16:16:10 +0000 (18:16 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 19 Oct 2013 16:16:10 +0000 (18:16 +0200)
src/language/lexer/value-parser.c

index 74478cfa60ac7bce5249792e38fc6f77a0504062..9d3d77f91656efee82cb8eac2d8b14b298a97ef1 100644 (file)
@@ -62,9 +62,9 @@ parse_num_range (struct lexer *lexer,
       if (*y < *x)
         {
           double t;
-          msg (SW, _("Low end of range (%g) is below high end (%g).  "
-                     "The range will be treated as reversed."),
-               *x, *y);
+          msg (SW, _("The high end of the range (%g) is below the low end (%g).  "
+                     "The range will be treated as if reversed."),
+               *y, *x);
           t = *x;
           *x = *y;
           *y = t;