From b812530bd86cc9071db84f92dd62d67f41930445 Mon Sep 17 00:00:00 2001 From: pmai <pmai> Date: Sat, 22 Mar 2003 01:25:43 +0000 Subject: [PATCH] Merged back important fix from 18e release branch. --- code/eval.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/eval.lisp b/code/eval.lisp index 26eeb06dd..9815d47c4 100644 --- a/code/eval.lisp +++ b/code/eval.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.36 2003/03/21 23:43:08 pmai Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.37 2003/03/22 01:25:43 pmai Exp $") ;;; ;;; ********************************************************************** ;;; @@ -251,12 +251,14 @@ ;;; Dummy stubs for EVAL:INTERNAL-EVAL and EVAL:MAKE-INTERPRETED-FUNCTION in ;;; case the compiler isn't loaded yet. ;;; +(declaim (notinline eval:internal-eval)) (defun eval:internal-eval (form &optional quietly env) (declare (ignore quietly env)) (error "Attempt to evaluation a complex expression:~% ~S~@ This expression must be compiled, but the compiler is not loaded." form)) ;;; +(declaim (notinline eval:make-interpreted-function)) (defun eval:make-interpreted-function (x) (error "EVAL called on #'(lambda (x) ...) when the compiler isn't loaded:~ ~% ~S~%" -- GitLab