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:
5275156
)
Fix (ice-9 read) for #\"
author
Andy Wingo
<wingo@pobox.com>
Sun, 14 Feb 2021 21:17:54 +0000
(22:17 +0100)
committer
Andy Wingo
<wingo@pobox.com>
Sun, 14 Feb 2021 21:17:54 +0000
(22:17 +0100)
* module/ice-9/read.scm (read): Fix #\ followed by a delimiter.
module/ice-9/read.scm
patch
|
blob
|
history
diff --git
a/module/ice-9/read.scm
b/module/ice-9/read.scm
index 808aa93368a0c46cc8429001e69b02f84bc21095..e0aecfea997c4c88de915151dcabe7a3636517f5 100644
(file)
--- a/
module/ice-9/read.scm
+++ b/
module/ice-9/read.scm
@@
-346,6
+346,8
@@
(cond
((eof-object? ch)
(input-error "unexpected end of input after #\\"))
+ ((delimiter? ch)
+ ch)
(else
(let* ((tok (read-token ch))
(len (string-length tok)))