Skip to content
Snippets Groups Projects
Commit ed35bc4c authored by gerd's avatar gerd
Browse files

* src/compiler/fndb.lisp (cerror): First arg may be a function.

parent 5cb8cc56
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -1050,7 +1050,7 @@
;;;; In the "Errors" chapter: ;;;; In the "Errors" chapter:
(defknown error (t &rest t) nil) ; Never returns... (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 warn (t &rest t) null)
(defknown break (&optional t &rest t) null) (defknown break (&optional t &rest t) null)
......
...@@ -128,6 +128,7 @@ New in this release: ...@@ -128,6 +128,7 @@ New in this release:
returning values specified by the standard when SLOT-UNBOUND returning values specified by the standard when SLOT-UNBOUND
or SLOT-MISSING are called and return. or SLOT-MISSING are called and return.
- NTH and NTHCDR accepting bignums as first argument. - NTH and NTHCDR accepting bignums as first argument.
- First arg of CERROR may be a function.
* Numerous bugfixes: * Numerous bugfixes:
- NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR - NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment