projects
/
platform
/
upstream
/
guile.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ea8c69
)
Fix reader extensions in Scheme reader
author
Andy Wingo
<wingo@pobox.com>
Wed, 3 Mar 2021 15:19:57 +0000
(16:19 +0100)
committer
Andy Wingo
<wingo@pobox.com>
Wed, 3 Mar 2021 15:22:56 +0000
(16:22 +0100)
* module/ice-9/read.scm (%read): Fix invocation of hash procedure.
module/ice-9/read.scm
patch
|
blob
|
history
diff --git
a/module/ice-9/read.scm
b/module/ice-9/read.scm
index 8d9faca5c19a83b13957e5253749d9abcb321011..73e043bb156ea095d49f90476217eb4c84488e29 100644
(file)
--- a/
module/ice-9/read.scm
+++ b/
module/ice-9/read.scm
@@
-602,7
+602,7
@@
((eof-object? ch)
(error "unexpected end of input after #"))
((read-hash-procedure ch)
- => (lambda (proc) (proc ch)))
+ => (lambda (proc) (proc ch
port
)))
(else
(case ch
((#\\) (read-character))