mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Fixing bug in let-optionals option parsing.
This commit is contained in:
parent
aeb881412c
commit
ef1ae88b7a
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ div#footer {padding-bottom: 50px}
|
|||
(let lp ((ls var) (vars vars) (i i))
|
||||
(cond
|
||||
((pair? ls)
|
||||
(lp (cdr ls) (cons (cons (caar ls) i) vars) (+ i 1)))
|
||||
(lp (cdr ls) (cons (cons (car ls) i) vars) (+ i 1)))
|
||||
(else
|
||||
(extract body vars i)))))
|
||||
(else
|
||||
|
|
Loading…
Add table
Reference in a new issue