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:
9d54188
)
Change MAPPER->GENERATOR to generate empty ranges.
author
Chris Hanson
<org/chris-hanson/cph>
Wed, 2 Jun 2010 08:38:16 +0000
(
01:38
-0700)
committer
Chris Hanson
<org/chris-hanson/cph>
Wed, 2 Jun 2010 08:38:16 +0000
(
01:38
-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 caf958ceb01cbc7b423ac798583826b6c9474dce..1d45ad66b58fec5d62d3e6694d91273aeb80477f 100644
(file)
--- a/
tests/runtime/test-char-set.scm
+++ b/
tests/runtime/test-char-set.scm
@@
-340,7
+340,7
@@
USA.
(lambda (points)
(let loop ((points points))
(if (pair? points)
- (append! (mapper (car points)
(cdr points)
)
+ (append! (mapper (car points)
points
)
(loop (cdr points)))
'()))))