mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 14:21:48 -08:00
c::emit-inlined-values did not contemplate the empty values form (values)
This commit is contained in:
parent
e90ff5a6c7
commit
8fddfe4076
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@
|
|||
|
||||
(defun emit-inlined-values (form forms)
|
||||
(let ((args (c1form-arg 0 form)))
|
||||
(prog1 (emit-inline-form (pop args) forms)
|
||||
(prog1 (emit-inline-form (or (pop args) (c1nil)) forms)
|
||||
(loop with *destination* = 'TRASH
|
||||
for form in args
|
||||
do (c2expr* form)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue