From 38fc36f200c7fff1caccd90cfd8a9c6c56f8ce8f Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 24 Jun 1993 14:04:52 +0000 Subject: [PATCH] Made DYNAMIC-EXTENT declaration recognized & ignored. --- compiler/ir1tran.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/ir1tran.lisp b/compiler/ir1tran.lisp index 5fce17602..9f9f85d78 100644 --- a/compiler/ir1tran.lisp +++ b/compiler/ir1tran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.87 1993/05/02 14:54:31 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.88 1993/06/24 14:04:52 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -25,7 +25,7 @@ (export '(truly-the maybe-inline *derive-function-types*)) (in-package "LISP") -(export '(ignorable symbol-macrolet)) +(export '(ignorable dynamic-extent symbol-macrolet)) (in-package "KERNEL") (export '(lambda-with-environment instance-lambda)) @@ -1144,6 +1144,9 @@ (car types) `(values ,@types)) cont res 'values)))) + (dynamic-extent + (when (policy nil (> speed brevity)) + (compiler-note "DYNAMIC-EXTENT declaration not implemented."))) (t (let ((what (first spec))) (cond ((member what type-specifier-symbols) -- GitLab