From fc6c16a1d82828f33081e2d90ae29c82c3b1464d Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sun, 21 Aug 1994 13:39:16 +0000
Subject: [PATCH] Don't warn about probable error unless both initarg and
 initform are missing.

---
 code/error.lisp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/code/error.lisp b/code/error.lisp
index 89f3a6884..73b537a33 100644
--- a/code/error.lisp
+++ b/code/error.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.42 1993/11/23 14:10:02 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.43 1994/08/21 13:39:16 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -728,8 +728,9 @@
 		  (t
 		   (error "Unknown slot option:~%  ~S" (first options))))))
 
-	    (unless (initargs)
-	      (warn "Probable error: no initargs for condition slot:~%  ~S"
+	    (unless (or (initargs) initform-p)
+	      (warn "Probable error: no initargs or initform for condition ~
+		     slot:~%  ~S"
 		    slot-name))
 	    (unless (readers)
 	      (warn "Probable error: no readers for condition slot:~%  ~S"
-- 
GitLab