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:
d2c3c3b
)
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>
Thu, 18 Jul 2019 00:50:54 +0000
(20:50 -0400)
src/runtime/reader.scm
patch
|
blob
|
history
diff --git
a/src/runtime/reader.scm
b/src/runtime/reader.scm
index a464e19e1337b033fc19ea71b911f01cb38d8585..8eb4470286a8977ecec815dc3e1342730f4178b1 100644
(file)
--- a/
src/runtime/reader.scm
+++ b/
src/runtime/reader.scm
@@
-566,7
+566,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))