0.8.18.12: fix a small bug where EVAL-IN-LEXENV wasn't evaluating the value
authorBrian Mastenbrook <bmastenb@cs.indiana.edu>
Wed, 5 Jan 2005 01:55:35 +0000 (01:55 +0000)
committerBrian Mastenbrook <bmastenb@cs.indiana.edu>
Wed, 5 Jan 2005 01:55:35 +0000 (01:55 +0000)
           of a setq assignment in any lexenv.

src/code/eval.lisp
version.lisp-expr

index 440b59d..9bd74e2 100644 (file)
                         ((null (cddr args))
                          ;; We duplicate the call to SET so that the
                          ;; correct value gets returned.
-                         (set (first args) (eval (second args))))
-                      (set (first args) (eval (second args)))))
+                         (set (first args) (eval-in-lexenv (second args) lexenv)))
+                      (set (first args) (eval-in-lexenv (second args) lexenv))))
                  (let ((symbol (first name)))
                    (case (info :variable :kind symbol)
                      (:special)
index d714bf7..289870d 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.18.11"
+"0.8.18.12"