From 7b97346738ea7b06e8d7532c3cb8e61b4e83aa6d Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Tue, 21 Jan 2003 16:51:09 +0000
Subject: [PATCH] From Eric Marsden:

    From a recent thread on comp.lang.lisp, it seems that CMUCL is non
    conforming in the way that it handles the coalescing of constants in
    the functions EVAL and COMPILE:

       Literal objects appearing in code processed by the compile
       function are neither copied nor coalesced. The code resulting
       from the execution of compile references objects that are eql
       to the corresponding objects in the source code.
---
 compiler/eval-comp.lisp | 3 ++-
 compiler/main.lisp      | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/compiler/eval-comp.lisp b/compiler/eval-comp.lisp
index 2f1550bf0..d144c8c23 100644
--- a/compiler/eval-comp.lisp
+++ b/compiler/eval-comp.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/compiler/eval-comp.lisp,v 1.32 2002/12/13 19:25:50 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/eval-comp.lisp,v 1.33 2003/01/21 16:51:09 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -49,6 +49,7 @@
 (defun compile-for-eval (form quietly &optional env)
   (with-ir1-namespace
     (let* ((*block-compile* nil)
+	   (*coalesce-constants* nil)
 	   (*lexical-environment* (or env (make-null-environment)))
 	   ;;
 	   (*compiler-error-output*
diff --git a/compiler/main.lisp b/compiler/main.lisp
index 47bd694ff..ebd432903 100644
--- a/compiler/main.lisp
+++ b/compiler/main.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/compiler/main.lisp,v 1.130 2003/01/06 15:10:18 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.131 2003/01/21 16:51:09 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1858,6 +1858,7 @@
 	     (*source-info* (make-lisp-source-info form))
 	     (*top-level-lambdas* ())
 	     (*converting-for-interpreter* nil)
+	     (*coalesce-constants* nil)
 	     (*block-compile* nil)
 	     (*compiler-error-bailout*
 	      #'(lambda ()
-- 
GitLab