When compiling PSETQ, the arguments would be evaluated in the wrong order.

This commit is contained in:
jjgarcia 2001-10-17 18:41:17 +00:00
parent 7957040185
commit 101cddc1b1

View file

@ -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)