Fix to allow single character here strings.
This commit is contained in:
parent
f172795016
commit
96b40e8846
|
@ -94,8 +94,8 @@
|
|||
(cond ((eof-object? delim)
|
||||
(reading-error port
|
||||
"EOF while reading #<< here-string delimiter line."))
|
||||
((= 1 (string-length delim))
|
||||
(reading-error port "#<< here-string empty delimiter line"))
|
||||
((= 0 (string-length delim))
|
||||
(reading-error port "#<< here-string empty delimiter line"))
|
||||
|
||||
(else
|
||||
(let lp ((text '()))
|
||||
|
|
Loading…
Reference in New Issue