diff --git a/compiler/debug.lisp b/compiler/debug.lisp index 676d7d3a018c5ed04f3e7fa467fe81d3009cb245..f4f3793059b6f14946ffd6973f2836725f14d7e4 100644 --- a/compiler/debug.lisp +++ b/compiler/debug.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/debug.lisp,v 1.30 2000/07/07 09:33:00 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/debug.lisp,v 1.31 2000/07/07 11:04:05 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -362,7 +362,7 @@ ;;; consistency. ;;; (defun check-block-consistency (block) - (declare (type cblock cblock)) + (declare (type cblock block)) (dolist (pred (block-pred block)) (unless (gethash pred *seen-blocks*) diff --git a/compiler/proclaim.lisp b/compiler/proclaim.lisp index 68c73fdde63f5cb779bc88c06561aff383c0815b..3ca796db3e6087397fe71adea9997aa92a85174a 100644 --- a/compiler/proclaim.lisp +++ b/compiler/proclaim.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/proclaim.lisp,v 1.31 2000/07/07 09:33:04 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/proclaim.lisp,v 1.32 2000/07/07 11:04:06 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -111,7 +111,7 @@ ;;; use Compiler-Error, aborting compilation to the last recovery point. ;;; (defun parse-lambda-list (list) - (delcare (list list) + (declare (list list) (values list list boolean t boolean list boolean list boolean t t)) (collect ((required) (optional)