From ed35bc4cc27dc2088e5d4d22baca8477d69a0b43 Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Tue, 1 Jul 2003 15:44:40 +0000 Subject: [PATCH] * src/compiler/fndb.lisp (cerror): First arg may be a function. --- compiler/fndb.lisp | 4 ++-- general-info/release-19a.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp index 94265cc45..76de03cfa 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 794478edf..90c5314a5 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 -- GitLab