mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 23:30:40 -08:00
When compiling PSETQ, the arguments would be evaluated in the wrong order.
This commit is contained in:
parent
7957040185
commit
101cddc1b1
1 changed files with 1 additions and 1 deletions
|
|
@ -376,7 +376,7 @@
|
|||
(cmpck (endp (cdr l))
|
||||
"No form was given for the value of ~s." var)
|
||||
(setq var (chk-symbol-macrolet var))
|
||||
(setq args (list* var (second l) args))
|
||||
(setq args (nconc args (list var (second l))))
|
||||
(if (symbolp var)
|
||||
(cmpck (constantp var)
|
||||
"The constant ~s is being assigned a value." var)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue