diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp index 94265cc45c2a1650e5f7885c52fb69a831e894df..76de03cfa544997d49f33e12b5236e6385a145a4 100644 --- a/compiler/fndb.lisp +++ b/compiler/fndb.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/fndb.lisp,v 1.116 2003/07/01 15:04:09 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.117 2003/07/01 15:44:40 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1050,7 +1050,7 @@ ;;;; In the "Errors" chapter: (defknown error (t &rest t) nil) ; Never returns... -(defknown cerror (string t &rest t) null) +(defknown cerror ((or string function) t &rest t) null) (defknown warn (t &rest t) null) (defknown break (&optional t &rest t) null) diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt index 794478edf31563a2e7a93782ca0cebf69d9adc0e..90c5314a52b25a5ae4cd60ea8edff16c6ce24015 100644 --- a/general-info/release-19a.txt +++ b/general-info/release-19a.txt @@ -128,6 +128,7 @@ New in this release: returning values specified by the standard when SLOT-UNBOUND or SLOT-MISSING are called and return. - NTH and NTHCDR accepting bignums as first argument. + - First arg of CERROR may be a function. * Numerous bugfixes: - NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR