Only use "A TO B" for increasing runs of integers, which is all we now
authorBen Pfaff <blp@gnu.org>
Mon, 8 May 2006 01:16:40 +0000 (01:16 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 8 May 2006 01:16:40 +0000 (01:16 +0000)
support (for closer compatibility).

tests/ChangeLog
tests/command/do-repeat.sh

index dbd5492414f23fbf17be3e09f39fbf06b816178f..f23e76c730cd9832b6e55489bc6e61f242d4d6ca 100644 (file)
@@ -1,3 +1,8 @@
+Sun May  7 18:15:52 2006  Ben Pfaff  <blp@gnu.org>
+
+       * command/do-repeat.sh: Only use "A TO B" for increasing runs of
+       integers, which is all we now support (for closer compatibility).
+
 Wed Apr 26 13:36:42 2006  Ben Pfaff  <blp@gnu.org>
 
        * command/missing-values.sh: Update output to match behavior
index 452814fa182a6f3a417cf599c3f562ce09912b42..990704fe7c22d96f105a61dca201ee572075ba06 100755 (executable)
@@ -60,7 +60,7 @@ BEGIN DATA.
 0
 END DATA.
 
-DO REPEAT h = h0 TO h3 / x = 0 1 2 3 / y = 8 TO 5.
+DO REPEAT h = h0 TO h3 / x = 0 TO 3 / y = 8, 7, 6, 5.
        COMPUTE h = x + y.
 END REPEAT.