From 73b6d0ac94d917fd06a3c9d10415a226b9b8ff0d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 25 Feb 1992 03:41:42 +0000 Subject: [PATCH] Fixed a bug I introduced into top level evaluations of setq that caused it to always return NIL. --- code/eval.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/eval.lisp b/code/eval.lisp index b7c758b70..1ad4b4446 100644 --- a/code/eval.lisp +++ b/code/eval.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.13 1992/02/24 01:21:55 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.14 1992/02/25 03:41:42 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -137,7 +137,10 @@ (do ((name (cdr exp) (cddr name))) ((null name) (do ((args (cdr exp) (cddr args))) - ((null args)) + ((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))))) (let ((symbol (first name))) (case (info variable kind symbol) -- GitLab