From 986fce364c6fe137e923a40e9c02efab4b6ccd48 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 27 May 1993 17:05:21 +0000 Subject: [PATCH] In do-tail-call, move the call to byte-interpret inside the scope of the LET so that the negation actually takes effect. --- code/byte-interp.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/byte-interp.lisp b/code/byte-interp.lisp index a91ae809d..8fd1db1ed 100644 --- a/code/byte-interp.lisp +++ b/code/byte-interp.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/byte-interp.lisp,v 1.18 1993/05/21 12:38:23 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/byte-interp.lisp,v 1.19 1993/05/27 17:05:21 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1226,8 +1226,8 @@ (byte-apply function num-args old-sp))))) (dolist (result results) (push-eval-stack result)) - (push-eval-stack (length results))) - (byte-interpret old-component old-pc old-fp)) + (push-eval-stack (length results)) + (byte-interpret old-component old-pc old-fp))) (t ;; We were called for one value. So return one value. (push-eval-stack -- GitLab