mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-09 22:17:34 +02:00
Making cond with no matching clauses return #<unspecified>.
This commit is contained in:
parent
bc14b4b9ec
commit
e1e7508d8d
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@
|
|||
(er-macro-transformer
|
||||
(lambda (expr rename compare)
|
||||
(if (null? (cdr expr))
|
||||
#f
|
||||
(if #f #f)
|
||||
((lambda (cl)
|
||||
(if (compare (rename 'else) (car cl))
|
||||
(if (pair? (cddr expr))
|
||||
|
|
Loading…
Add table
Reference in a new issue