From d711661391ca1b67d7e1a39d6f89aedcd66b489e Mon Sep 17 00:00:00 2001 From: Brian Mastenbrook Date: Wed, 5 Jan 2005 01:55:35 +0000 Subject: [PATCH] 0.8.18.12: fix a small bug where EVAL-IN-LEXENV wasn't evaluating the value of a setq assignment in any lexenv. --- src/code/eval.lisp | 4 ++-- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/code/eval.lisp b/src/code/eval.lisp index 440b59d..9bd74e2 100644 --- a/src/code/eval.lisp +++ b/src/code/eval.lisp @@ -144,8 +144,8 @@ ((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) diff --git a/version.lisp-expr b/version.lisp-expr index d714bf7..289870d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4