From aea8592efc7369d8314b360cffd99ea587109a36 Mon Sep 17 00:00:00 2001
From: pmai <pmai>
Date: Thu, 19 Sep 2002 17:51:14 +0000
Subject: [PATCH] Improve layout depth conflict error message.  From the
 unicode patch-set by Brian Spilsbury.

---
 code/class.lisp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/code/class.lisp b/code/class.lisp
index 1f7a3d382..f5170bfff 100644
--- a/code/class.lisp
+++ b/code/class.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/class.lisp,v 1.48 2002/07/10 16:15:58 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/class.lisp,v 1.49 2002/09/19 17:51:14 pmai Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -200,7 +200,9 @@
 	  (unless (eql depth -1)
 	    (let ((old-layout (svref inherits depth)))
 	      (unless (or (eql old-layout 0) (eq old-layout layout))
-		(error "Layout depth confict: ~S~%" layouts)))
+		(error "Layout depth confict: ~S~%  ~
+		        (~S collides at ~S with ~S)~%"
+		       layouts layout depth old-layout)))
 	    (setf (svref inherits depth) layout))))
       (do ((i 0 (1+ i))
 	   (j 0))
-- 
GitLab