Skip to content

Commit

Permalink
Fix MAKE-ARRAY-BAD-FILL-POINTER error message.
Browse files Browse the repository at this point in the history
Swap ADJECTIVE and MAX arguments in call to ERROR.
  • Loading branch information
brown authored and stassats committed Aug 22, 2021
1 parent 0865312 commit 175eac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/code/array.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@
;; There was a comment implying that this should be TYPE-ERROR
;; but I don't see that as a spec requirement.
`(error "Can't supply a value for :FILL-POINTER (~S) that is larger ~
than the~A size of the vector (~S)" ,actual ,max ,adjective))
than the~A size of the vector (~S)" ,actual ,adjective ,max))

(declaim (inline %save-displaced-array-backpointer))
(defun %save-displaced-array-backpointer (array data)
Expand Down

0 comments on commit 175eac1

Please sign in to comment.