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:
47d3870
)
Fix typo.
author
Chris Hanson
<org/chris-hanson/cph>
Sun, 19 Feb 2017 09:29:50 +0000
(
01:29
-0800)
committer
Chris Hanson
<org/chris-hanson/cph>
Sun, 19 Feb 2017 09:29:50 +0000
(
01:29
-0800)
src/runtime/ustring.scm
patch
|
blob
|
history
diff --git
a/src/runtime/ustring.scm
b/src/runtime/ustring.scm
index 65fc820454bcc99ce20b6251375597618e41cc66..a15d4c39d7b573140d630d6357f31d6ee4a41fb3 100644
(file)
--- a/
src/runtime/ustring.scm
+++ b/
src/runtime/ustring.scm
@@
-567,13
+567,13
@@
USA.
(else (error:not-a ->string-component? object caller))))
(define (->string-component? object)
- (
cond
(not object)
-
(bitless-char? object)
-
(string? object)
-
(symbol? object)
-
(pathname? object)
-
(number? object)
-
(uri? object)))
+ (
or
(not object)
+ (bitless-char? object)
+ (string? object)
+ (symbol? object)
+ (pathname? object)
+ (number? object)
+ (uri? object)))
\f
(define (mapper-values proc string strings)
(cond ((null? strings)