projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ad8e00
)
Only use "A TO B" for increasing runs of integers, which is all we now
author
Ben Pfaff
<blp@gnu.org>
Mon, 8 May 2006 01:16:40 +0000
(
01:16
+0000)
committer
Ben Pfaff
<blp@gnu.org>
Mon, 8 May 2006 01:16:40 +0000
(
01:16
+0000)
support (for closer compatibility).
tests/ChangeLog
patch
|
blob
|
history
tests/command/do-repeat.sh
patch
|
blob
|
history
diff --git
a/tests/ChangeLog
b/tests/ChangeLog
index dbd5492414f23fbf17be3e09f39fbf06b816178f..f23e76c730cd9832b6e55489bc6e61f242d4d6ca 100644
(file)
--- a/
tests/ChangeLog
+++ b/
tests/ChangeLog
@@
-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
diff --git
a/tests/command/do-repeat.sh
b/tests/command/do-repeat.sh
index 452814fa182a6f3a417cf599c3f562ce09912b42..990704fe7c22d96f105a61dca201ee572075ba06 100755
(executable)
--- a/
tests/command/do-repeat.sh
+++ b/
tests/command/do-repeat.sh
@@
-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.