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

* src/code/interr.lisp (invalid-array-index-error): Signal

	a type-error, as per ANSI.
parent 32080acb
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/code/interr.lisp,v 1.40 2003/03/23 21:23:42 gerd Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.41 2003/04/21 15:37:24 gerd Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -313,7 +313,7 @@ ...@@ -313,7 +313,7 @@
:format-arguments (list key))) :format-arguments (list key)))
(deferr invalid-array-index-error (array bound index) (deferr invalid-array-index-error (array bound index)
(error 'simple-error (error 'type-error
:function-name name :function-name name
:format-control :format-control
(cond ((zerop bound) (cond ((zerop bound)
......
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