projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
062fc0f
)
Change MAKE-RANDOM-SVL to generate empty ranges.
author
Chris Hanson
<org/chris-hanson/cph>
Wed, 2 Jun 2010 08:39:21 +0000
(
01:39
-0700)
committer
Chris Hanson
<org/chris-hanson/cph>
Wed, 2 Jun 2010 08:39:21 +0000
(
01:39
-0700)
tests/runtime/test-char-set.scm
patch
|
blob
|
history
diff --git
a/tests/runtime/test-char-set.scm
b/tests/runtime/test-char-set.scm
index 97f50fde65a69f58ddaaebcdb5d972b9977bf69c..e4fb1a5810ca19f3c331ba2d92c213d737de5478 100644
(file)
--- a/
tests/runtime/test-char-set.scm
+++ b/
tests/runtime/test-char-set.scm
@@
-69,7
+69,7
@@
USA.
(let loop ()
(let ((n (random (- char-code-limit modulus))))
(let ((m (random modulus)))
- (if (= m
0
)
+ (if (= m
1
)
n
(cons n (+ n m))))))))))