mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Don't map expansion across non-lists.
This commit is contained in:
parent
966ece57c2
commit
9e1034be02
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@
|
|||
|
||||
(define (expand sxml env)
|
||||
(cond
|
||||
((pair? sxml)
|
||||
((list? sxml)
|
||||
(cond
|
||||
((symbol? (car sxml))
|
||||
(let ((op (env-ref env (car sxml))))
|
||||
|
|
Loading…
Add table
Reference in a new issue