mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
fixing bug in srfi-38 for reading ellipsis
This commit is contained in:
parent
cb6d16a8f1
commit
a56b497a00
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@
|
|||
(error "expected end of list after dot"))))
|
||||
((char-numeric? (peek-char in))
|
||||
(lp (cons (read-float-tail in) res)))
|
||||
(else (string->symbol (read-name #\. in)))))
|
||||
(else (lp (cons (string->symbol (read-name #\. in)) res)))))
|
||||
(else
|
||||
(if (eof-object? c)
|
||||
(error "unterminated list")
|
||||
|
|
Loading…
Add table
Reference in a new issue