From 678ca208064f42e46078b9ac7c16efb9734d45e9 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 31 Aug 1993 07:42:18 +0000 Subject: [PATCH] Don't want to push each byte closure in the function list. --- code/byte-interp.lisp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/byte-interp.lisp b/code/byte-interp.lisp index 580f774c3..86e357cbb 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.27 1993/08/31 07:38:16 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/byte-interp.lisp,v 1.28 1993/08/31 07:42:18 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -374,8 +374,6 @@ (defun make-byte-compiled-closure (xep closure-vars) (declare (type byte-function xep) (type simple-vector closure-vars)) - (push xep (code-header-ref (byte-function-component xep) - vm:code-trace-table-offset-slot)) (let ((res (make-byte-closure xep closure-vars))) (setf (funcallable-instance-function res) #'(instance-lambda (&rest args) -- GitLab