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:
ee4105a
)
Fix stupid typo in reader.
author
Chris Hanson
<org/chris-hanson/cph>
Tue, 9 Jul 2019 23:53:32 +0000
(19:53 -0400)
committer
Chris Hanson
<org/chris-hanson/cph>
Tue, 9 Jul 2019 23:53:32 +0000
(19:53 -0400)
src/runtime/reader.scm
patch
|
blob
|
history
diff --git
a/src/runtime/reader.scm
b/src/runtime/reader.scm
index 5e5c28bf9770d9d90a94198bf25708c08d1a6b5d..116f33919f049b906942e3b19660f70e3edbd9c9 100644
(file)
--- a/
src/runtime/reader.scm
+++ b/
src/runtime/reader.scm
@@
-564,7
+564,7
@@
USA.
(define (handler:close-bracket db ctx char)
db
- (if (
close-bracket-ok? ctx
)
+ (if (
not (close-bracket-ok? ctx)
)
(error:unbalanced-close char))
(close-bracket-token))