From: William Harold Newman Date: Mon, 20 Aug 2001 16:54:04 +0000 (+0000) Subject: 0.pre7.14.flaky4.1: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3b45a7b66afe95080562d266dd447b1286abece0;hp=3b45a7b66afe95080562d266dd447b1286abece0;p=sbcl.git 0.pre7.14.flaky4.1: (This version builds under older versions of SBCL, but can't build under itself, dying somewhere in defun-load-or-cload-xcompiler.lisp.) fixed (FUNCALL (COMPILE NIL (LAMBDA (X) (+ X 2))) 3) problem under new #!-SB-INTERPRETER implementation of EVAL.. ..should usually be quoted, (COMPILE NIL '(LAMBDA ..)) ..When it's not quoted, so that under the new EVAL the LAMBDA will be a (byte-)compiled function, COMPILE shouldn't fail, it should pass the compiled function through. deleted unused *BACKEND-INFO-ENVIRONMENT* ---