mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-06 20:56:38 +02:00
Fixing unquote-splicing in srfi-38.
This commit is contained in:
parent
90856b8de2
commit
195cbeca6d
1 changed files with 6 additions and 6 deletions
|
@ -344,10 +344,10 @@
|
||||||
((#\`) (read-char in) (list 'quasiquote (read-one)))
|
((#\`) (read-char in) (list 'quasiquote (read-one)))
|
||||||
((#\,)
|
((#\,)
|
||||||
(read-char in)
|
(read-char in)
|
||||||
(list (if (eqv? #\@ (peek-char in))
|
(let ((sym (if (eqv? #\@ (peek-char in))
|
||||||
(begin (read-char in) 'unquote-splicing)
|
(begin (read-char in) 'unquote-splicing)
|
||||||
'unquote)
|
'unquote)))
|
||||||
(read-one)))
|
(list sym (read-one))))
|
||||||
(else
|
(else
|
||||||
(read in))))
|
(read in))))
|
||||||
;; body
|
;; body
|
||||||
|
|
Loading…
Add table
Reference in a new issue