diff --git a/ansi-tests/ansi-aux.lsp b/ansi-tests/ansi-aux.lsp
index 49cab6dd59411a86fdbbbfb7680366046ffa97d7..904cdad1afa81403eadb2366113caafcc0c974db 100644
--- a/ansi-tests/ansi-aux.lsp
+++ b/ansi-tests/ansi-aux.lsp
@@ -279,6 +279,7 @@ the condition to go uncaught if it cannot be classified."
      (file-error    () 'file-error)
      (control-error () 'control-error)
      (cell-error    () 'cell-error)
+     (error         () 'error)
   )))
 
 (defun classify-error** (form)
diff --git a/ansi-tests/apply.lsp b/ansi-tests/apply.lsp
index b403ff7ad4cc913bbecbae85fc659dfb01bf4ae0..d796c36fdf1acf04d9870aa396146703633f80b3 100644
--- a/ansi-tests/apply.lsp
+++ b/ansi-tests/apply.lsp
@@ -19,6 +19,10 @@
   (classify-error (apply #'cons nil))
   program-error)
 
+(deftest apply.error.4
+  (classify-errir (apply #'cons (list 1 2 3)))
+  program-error)
+
 ;;; Non-error cases
 
 (deftest apply.1
diff --git a/ansi-tests/complement.lsp b/ansi-tests/complement.lsp
index e387c0c6adcebef31e2f1317d5c84b7afa2d417d..0fee0a8cafeff263ec0e5cad3955431183d28e9f 100644
--- a/ansi-tests/complement.lsp
+++ b/ansi-tests/complement.lsp
@@ -47,3 +47,11 @@
 (deftest complement.error.2
   (classify-error (complement #'not t))
   program-error)
+
+(deftest complement.error.3
+  (classify-error (funcall (complement #'identity)))
+  program-error)
+
+(deftest complement.error.4
+  (classify-error (funcall (complement #'identity) t t))
+  program-error)
diff --git a/ansi-tests/concatenate.lsp b/ansi-tests/concatenate.lsp
index de8fefa16614170c932220052ba8ebad7275479d..6fdb214fd10a79a2b3a2ca98af296e0f3f5affc7 100644
--- a/ansi-tests/concatenate.lsp
+++ b/ansi-tests/concatenate.lsp
@@ -207,18 +207,12 @@
 ;;; Error tests
 
 (deftest concatenate.error.1
-  (handler-case
-   (progn (proclaim '(optimize (safety 3)))
-	  (eval '(concatenate 'sequence '(a b c))))
-   (error () :caught))
-  :caught)
+  (subtypep* (classify-error (concatenate 'sequence '(a b c))) 'error)
+  t t)
 
 (deftest concatenate.error.2
-  (handler-case
-      (progn (proclaim '(optimize (safety 3)))
-	     (concatenate 'fixnum '(a b c d e)))
-      (error () :caught))
-  :caught)
+  (subtypep* (classify-error (concatenate 'fixnum '(a b c d e))) 'error)
+  t t)
 
 (deftest concatenate.error.3
   (classify-error (concatenate '(vector * 3) '(a b c d e)))
diff --git a/ansi-tests/cons-test-02.lsp b/ansi-tests/cons-test-02.lsp
index 117c1aaa068d1505af3c5967c8f1864bf912d3e1..cdcecef25c0b6891b14deb44e4ed62a2221df9dd 100644
--- a/ansi-tests/cons-test-02.lsp
+++ b/ansi-tests/cons-test-02.lsp
@@ -181,6 +181,24 @@
   (classify-error (sublis nil 'a :bad-keyword t))
   program-error)
 
+(deftest sublis.error.5
+  (classify-error (sublis '((a . 1) (b . 2))
+			  (list 'a 'b 'c 'd)
+			  :test #'identity))
+  program-error)
+
+(deftest sublis.error.6
+  (classify-error (sublis '((a . 1) (b . 2))
+			  (list 'a 'b 'c 'd)
+			  :key #'cons))
+  program-error)
+
+(deftest sublis.error.7
+  (classify-error (sublis '((a . 1) (b . 2))
+			  (list 'a 'b 'c 'd)
+			  :test-not #'identity))
+  program-error)
+
 ;; nsublis
 
 (deftest nsublis.1
@@ -321,6 +339,25 @@
   (classify-error (nsublis nil 'a :bad-keyword t))
   program-error)
 
+(deftest nsublis.error.5
+  (classify-error (nsublis '((a . 1) (b . 2))
+			   (list 'a 'b 'c 'd)
+			   :test #'identity))
+  program-error)
+
+(deftest nsublis.error.6
+  (classify-error (nsublis '((a . 1) (b . 2))
+			   (list 'a 'b 'c 'd)
+			   :key #'cons))
+  program-error)
+
+(deftest nsublis.error.7
+  (classify-error (nsublis '((a . 1) (b . 2))
+			   (list 'a 'b 'c 'd)
+			   :test-not #'identity))
+  program-error)
+
+;;;;;;
 
 (deftest sublis.shared
   (let* ((shared-piece (list 'a 'b))
@@ -891,6 +928,18 @@
   (classify-error (subst 'a 'b nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest subst.error.8
+  (classify-error (subst 'a 'b (list 'a 'b) :test #'identity))
+  program-error)
+
+(deftest subst.error.9
+  (classify-error (subst 'a 'b (list 'a 'b) :test-not #'identity))
+  program-error)
+
+(deftest subst.error.10
+  (classify-error (subst 'a 'b (list 'a 'b) :key #'equal))
+  program-error)
+
 ;;; nsubst
 (deftest nsubst.error.1
   (classify-error (nsubst))
@@ -920,6 +969,18 @@
   (classify-error (nsubst 'a 'b nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest nsubst.error.8
+  (classify-error (nsubst 'a 'b (list 'a 'b) :test #'identity))
+  program-error)
+
+(deftest nsubst.error.9
+  (classify-error (nsubst 'a 'b (list 'a 'b) :test-not #'identity))
+  program-error)
+
+(deftest nsubst.error.10
+  (classify-error (nsubst 'a 'b (list 'a 'b) :key #'equal))
+  program-error)
+
 ;;; subst-if
 (deftest subst-if.error.1
   (classify-error (subst-if))
@@ -949,6 +1010,10 @@
   (classify-error (subst-if 'a #'null nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest subst-if.error.8
+  (classify-error (subst-if 'a #'null (list 'a nil 'c) :key #'cons))
+  program-error)
+
 ;;; subst-if-not
 (deftest subst-if-not.error.1
   (classify-error (subst-if-not))
@@ -979,6 +1044,10 @@
 				:bad t :allow-other-keys nil))
   program-error)
 
+(deftest subst-if-not.error.8
+  (classify-error (subst-if-not 'a #'null (list 'a nil 'c) :key #'cons))
+  program-error)
+
 ;;; nsubst-if
 (deftest nsubst-if.error.1
   (classify-error (nsubst-if))
@@ -1008,6 +1077,10 @@
   (classify-error (nsubst-if 'a #'null nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest nsubst-if.error.8
+  (classify-error (nsubst-if 'a #'null (list 'a nil 'c) :key #'cons))
+  program-error)
+
 
 ;;; nsubst-if-not
 (deftest nsubst-if-not.error.1
@@ -1038,3 +1111,8 @@
   (classify-error (nsubst-if-not 'a #'null nil
 				 :bad t :allow-other-keys nil))
   program-error)
+
+(deftest nsubst-if-not.error.8
+  (classify-error (nsubst-if-not 'a #'null (list 'a nil 'c) :key #'cons))
+  program-error)
+
diff --git a/ansi-tests/cons-test-04.lsp b/ansi-tests/cons-test-04.lsp
index 2846d52029b4b31f6c0a696fa05396a8c21412ec..c605428cea31939ed3585bb397fbc4612a4797e5 100644
--- a/ansi-tests/cons-test-04.lsp
+++ b/ansi-tests/cons-test-04.lsp
@@ -229,6 +229,24 @@
   (a b c) (a b c)
   3 1 3 2)
 
+(deftest pushnew.error.1
+  (classify-error
+   (let ((x '(a b)))
+     (pushnew 'c x :test #'identity)))
+  program-error)
+
+(deftest pushnew.error.2
+  (classify-error
+   (let ((x '(a b)))
+     (pushnew 'c x :test-not #'identity)))
+  program-error)
+
+(deftest pushnew.error.3
+  (classify-error
+   (let ((x '(a b)))
+     (pushnew 'c x :key #'cons)))
+  program-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; adjoin
 
@@ -381,3 +399,15 @@
 (deftest adjoin.error.6
   (classify-error (adjoin 'a '(b c) :test))
   program-error)
+
+(deftest adjoin.error.7
+  (classify-error (adjoin 'a '(b c) :test #'identity))
+  program-error)
+
+(deftest adjoin.error.8
+  (classify-error (adjoin 'a '(b c) :test-not #'identity))
+  program-error)
+
+(deftest adjoin.error.9
+  (classify-error (adjoin 'a '(b c) :key #'cons))
+  program-error)
diff --git a/ansi-tests/cons-test-13.lsp b/ansi-tests/cons-test-13.lsp
index d2f65eb7b9659b42f135f9418bc020684961c7c9..b1f699e29f22ca0f42a12475cbba902bff7ac71f 100644
--- a/ansi-tests/cons-test-13.lsp
+++ b/ansi-tests/cons-test-13.lsp
@@ -278,3 +278,15 @@
 (deftest member.error.14
   (classify-error (locally (member 'a t) t))
   type-error)
+
+(deftest member.error.15
+  (classify-error (member 'a '(a b c) :test #'identity))
+  program-error)
+
+(deftest member.error.16
+  (classify-error (member 'a '(a b c) :test-not #'identity))
+  program-error)
+
+(deftest member.error.17
+  (classify-error (member 'a '(a b c) :key #'cons))
+  program-error)
diff --git a/ansi-tests/cons-test-14.lsp b/ansi-tests/cons-test-14.lsp
index b85acb74ed5fe24f8cdb70b7321fff3830ff49db..aaac91fa50b4ab9281b36ccebb9a0703e91adf7c 100644
--- a/ansi-tests/cons-test-14.lsp
+++ b/ansi-tests/cons-test-14.lsp
@@ -225,6 +225,14 @@
   (classify-error (locally (member-if #'identity 'a) t))
   type-error)
 
+(deftest member-if.error.9
+  (classify-error (member-if #'cons '(a b c)))
+  program-error)
+
+(deftest member-if.error.10
+  (classify-error (member-if #'identity '(a b c) :key #'cons))
+  program-error)
+
 
 (deftest member-if-not.error.1
   (classify-error (member-if-not #'identity 'a))
@@ -257,3 +265,11 @@
 (deftest member-if-not.error.8
   (classify-error (locally (member-if-not #'identity 'a) t))
   type-error)
+
+(deftest member-if-not.error.9
+  (classify-error (member-if-not #'cons '(a b c)))
+  program-error)
+
+(deftest member-if-not.error.10
+  (classify-error (member-if-not #'identity '(a b c) :key #'cons))
+  program-error)
diff --git a/ansi-tests/cons-test-15.lsp b/ansi-tests/cons-test-15.lsp
index 9d82f3cff73e4464633faec49b72891e2500541e..f29f020cb09bfe7ce9fe538c2ac012e31000b24f 100644
--- a/ansi-tests/cons-test-15.lsp
+++ b/ansi-tests/cons-test-15.lsp
@@ -92,6 +92,18 @@
   (classify-error (locally (mapc #'identity 1) t))
   type-error)
 
+(deftest mapc.error.5
+  (classify-error (mapc #'cons '(a b c)))
+  program-error)
+
+(deftest mapc.error.6
+  (classify-error (mapc #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
+(deftest mapc.error.7
+  (classify-error (mapc #'car '(a b c)))
+  type-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; mapcar
 
@@ -184,6 +196,19 @@
   (classify-error (locally (mapcar #'identity 1) t))
   type-error)
 
+(deftest mapcar.error.5
+  (classify-error (mapcar #'car '(a b c)))
+  type-error)
+
+(deftest mapcar.error.6
+  (classify-error (mapcar #'cons '(a b c)))
+  program-error)
+
+(deftest mapcar.error.7
+  (classify-error (mapcar #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; mapcan
 
@@ -283,6 +308,18 @@
   (classify-error (locally (mapcan #'identity 1) t))
   type-error)
 
+(deftest mapcan.error.5
+  (classify-error (mapcan #'car '(a b c)))
+  type-error)
+
+(deftest mapcan.error.6
+  (classify-error (mapcan #'cons '(a b c)))
+  program-error)
+
+(deftest mapcan.error.7
+  (classify-error (mapcan #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; mapl
 
@@ -394,6 +431,19 @@
   (classify-error (locally (mapl #'identity 1) t))
   type-error)
 
+(deftest mapl.error.5
+  (classify-error (mapl #'cons '(a b c)))
+  program-error)
+
+(deftest mapl.error.6
+  (classify-error (mapl #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
+(deftest mapl.error.7
+  (classify-error (mapl #'caar '(a b c)))
+  type-error)
+
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; maplist
 
@@ -512,6 +562,18 @@
   (classify-error (locally (maplist #'identity 'a) t))
   type-error)
 
+(deftest maplist.error.8
+  (classify-error (maplist #'caar '(a b c)))
+  type-error)
+
+(deftest maplist.error.9
+  (classify-error (maplist #'cons '(a b c)))
+  program-error)
+
+(deftest maplist.error.10
+  (classify-error (maplist #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; mapcon
 
@@ -576,3 +638,15 @@
 (deftest mapcon.error.4
   (classify-error (locally (mapcon #'identity 1) t))
   type-error)
+
+(deftest mapcon.error.5
+  (classify-error (mapcon #'caar '(a b c)))
+  type-error)
+
+(deftest mapcon.error.6
+  (classify-error (mapcon #'cons '(a b c)))
+  program-error)
+
+(deftest mapcon.error.7
+  (classify-error (mapcon #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
diff --git a/ansi-tests/cons-test-16.lsp b/ansi-tests/cons-test-16.lsp
index 0210a2ad8ab29a3a278824b25151f309e6e9eb6b..e51f8c6c501c0027f1b3b476eddb7a8935c8085f 100644
--- a/ansi-tests/cons-test-16.lsp
+++ b/ansi-tests/cons-test-16.lsp
@@ -298,6 +298,18 @@
   (classify-error (assoc nil nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest assoc.error.7
+  (classify-error (assoc 'a '((a . b)) :test #'identity))
+  program-error)
+
+(deftest assoc.error.8
+  (classify-error (assoc 'a '((a . b)) :test-not #'identity))
+  program-error)
+
+(deftest assoc.error.9
+  (classify-error (assoc 'a '((a . b)) :key #'cons))
+  program-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; assoc-if
 
@@ -414,6 +426,23 @@
   (classify-error (assoc-if #'null nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest assoc-if.error.7
+  (classify-error (assoc-if #'cons '((a b)(c d))))
+  program-error)
+
+(deftest assoc-if.error.8
+  (classify-error (assoc-if #'identity '((a b)(c d)) :key #'cons))
+  program-error)
+
+(deftest assoc-if.error.9
+  (classify-error (assoc-if #'car '((a b)(c d))))
+  type-error)
+
+(deftest assoc-if.error.10
+  (classify-error (assoc-if #'identity '((a b)(c d)) :key #'car))
+  type-error)
+
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; assoc-if-not
 
@@ -532,6 +561,22 @@
   (classify-error (assoc-if-not #'null nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest assoc-if-not.error.7
+  (classify-error (assoc-if-not #'cons '((a b)(c d))))
+  program-error)
+
+(deftest assoc-if-not.error.8
+  (classify-error (assoc-if-not #'identity '((a b)(c d)) :key #'cons))
+  program-error)
+
+(deftest assoc-if-not.error.9
+  (classify-error (assoc-if-not #'car '((a b)(c d))))
+  type-error)
+
+(deftest assoc-if-not.error.10
+  (classify-error (assoc-if-not #'identity '((a b)(c d)) :key #'car))
+  type-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; copy-alist
 
diff --git a/ansi-tests/cons-test-17.lsp b/ansi-tests/cons-test-17.lsp
index f489bf065c902cf79008ea7a4f198ac474f921cd..8d34468a17544cb2cf0b8da43168042638bb4657 100644
--- a/ansi-tests/cons-test-17.lsp
+++ b/ansi-tests/cons-test-17.lsp
@@ -283,6 +283,18 @@
   (classify-error (rassoc nil nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest rassoc.error.7
+  (classify-error (rassoc 'a '((b . a)(c . d)) :test #'identity))
+  program-error)
+
+(deftest rassoc.error.8
+  (classify-error (rassoc 'a '((b . a)(c . d)) :test-not #'identity))
+  program-error)
+
+(deftest rassoc.error.9
+  (classify-error (rassoc 'a '((b . a)(c . d)) :key #'cons))
+  program-error)
+
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; rassoc-if
@@ -397,6 +409,22 @@
   (classify-error (rassoc-if #'null nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest rassoc-if.error.7
+  (classify-error (rassoc-if #'cons '((a . b)(c . d))))
+  program-error)
+
+(deftest rassoc-if.error.8
+  (classify-error (rassoc-if #'car '((a . b)(c . d))))
+  type-error)
+
+(deftest rassoc-if.error.9
+  (classify-error (rassoc-if #'identity '((a . b)(c . d)) :key #'cons))
+  program-error)
+
+(deftest rassoc-if.error.10
+  (classify-error (rassoc-if #'identity '((a . b)(c . d)) :key #'car))
+  type-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; rassoc-if-not
 
@@ -512,4 +540,20 @@
 
 (deftest rassoc-if-not.error.6
   (classify-error (rassoc-if-not #'null nil :bad t :allow-other-keys nil))
-  program-error)
\ No newline at end of file
+  program-error)
+
+(deftest rassoc-if-not.error.7
+  (classify-error (rassoc-if-not #'cons '((a . b)(c . d))))
+  program-error)
+
+(deftest rassoc-if-not.error.8
+  (classify-error (rassoc-if-not #'car '((a . b)(c . d))))
+  type-error)
+
+(deftest rassoc-if-not.error.9
+  (classify-error (rassoc-if-not #'identity '((a . b)(c . d)) :key #'cons))
+  program-error)
+
+(deftest rassoc-if-not.error.10
+  (classify-error (rassoc-if-not #'identity '((a . b)(c . d)) :key #'car))
+  type-error)
diff --git a/ansi-tests/cons-test-19.lsp b/ansi-tests/cons-test-19.lsp
index b3987d3d577f9ba40d6924f6c5edaf09873d1a33..c0d0e4bbc1929cd78280b9b531b7691393729206 100644
--- a/ansi-tests/cons-test-19.lsp
+++ b/ansi-tests/cons-test-19.lsp
@@ -372,6 +372,22 @@
   (classify-error (intersection nil nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest intersection.error.7
+  (classify-error (intersection '(a b c) '(d e f) :test #'identity))
+  program-error)
+
+(deftest intersection.error.8
+  (classify-error (intersection '(a b c) '(d e f) :test-not #'identity))
+  program-error)
+
+(deftest intersection.error.9
+  (classify-error (intersection '(a b c) '(d e f) :key #'cons))
+  program-error)
+
+(deftest intersection.error.10
+  (classify-error (intersection '(a b c) '(d e f) :key #'car))
+  type-error)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; nintersection
 
@@ -703,4 +719,20 @@
 
 (deftest nintersection.error.6
   (classify-error (nintersection nil nil :bad t :allow-other-keys nil))
-  program-error)
\ No newline at end of file
+  program-error)
+
+(deftest nintersection.error.7
+  (classify-error (nintersection (list 1 2 3) (list 4 5 6) :test #'identity))
+  program-error)
+
+(deftest nintersection.error.8
+  (classify-error (nintersection (list 1 2 3) (list 4 5 6) :test-not #'identity))
+  program-error)
+
+(deftest nintersection.error.9
+  (classify-error (nintersection (list 1 2 3) (list 4 5 6) :key #'cons))
+  program-error)
+
+(deftest nintersection.error.10
+  (classify-error (nintersection (list 1 2 3) (list 4 5 6) :key #'car))
+  type-error)
diff --git a/ansi-tests/cons-test-20.lsp b/ansi-tests/cons-test-20.lsp
index e61b5e4887c9589fba37d823a8a0a9a7a0c562b0..e62d3fe217d8fe573731b89921df043ddb95b480 100644
--- a/ansi-tests/cons-test-20.lsp
+++ b/ansi-tests/cons-test-20.lsp
@@ -383,4 +383,22 @@
 
 (deftest union.error.6
   (classify-error (union nil nil :bad t :allow-other-keys nil))
-  program-error)
\ No newline at end of file
+  program-error)
+
+(deftest union.error.7
+  (classify-error (union (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest union.error.8
+  (classify-error (union (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest union.error.9
+  (classify-error (union (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest union.error.10
+  (classify-error (union (list 1 2) (list 3 4) :key #'car))
+  type-error)
+
+
diff --git a/ansi-tests/cons-test-21.lsp b/ansi-tests/cons-test-21.lsp
index ef5c39a7737e744b98e369011e8add9804ca3d53..7a6a3ae03e7b28915825820be8936480ca5d8d8d 100644
--- a/ansi-tests/cons-test-21.lsp
+++ b/ansi-tests/cons-test-21.lsp
@@ -382,4 +382,21 @@
 
 (deftest nunion.error.6
   (classify-error (nunion nil nil :bad t :allow-other-keys nil))
-  program-error)
\ No newline at end of file
+  program-error)
+
+(deftest nunion.error.7
+  (classify-error (nunion (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest nunion.error.8
+  (classify-error (nunion (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest nunion.error.9
+  (classify-error (nunion (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest nunion.error.10
+  (classify-error (nunion (list 1 2) (list 3 4) :key #'car))
+  type-error)
+
diff --git a/ansi-tests/cons-test-22.lsp b/ansi-tests/cons-test-22.lsp
index 8ead25af929fad0a66314240ad24d02992746055..3c7a3a401bfe4f5b95db5c154f6b79a49e7ce40c 100644
--- a/ansi-tests/cons-test-22.lsp
+++ b/ansi-tests/cons-test-22.lsp
@@ -294,6 +294,23 @@
   (classify-error (set-difference nil nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest set-difference.error.7
+  (classify-error (set-difference (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest set-difference.error.8
+  (classify-error (set-difference (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest set-difference.error.9
+  (classify-error (set-difference (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest set-difference.error.10
+  (classify-error (set-difference (list 1 2) (list 3 4) :key #'car))
+  type-error)
+
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; nset-difference
 
@@ -578,3 +595,19 @@
 (deftest nset-difference.error.6
   (classify-error (nset-difference nil nil :bad t :allow-other-keys nil))
   program-error)
+
+(deftest nset-difference.error.7
+  (classify-error (nset-difference (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest nset-difference.error.8
+  (classify-error (nset-difference (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest nset-difference.error.9
+  (classify-error (nset-difference (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest nset-difference.error.10
+  (classify-error (nset-difference (list 1 2) (list 3 4) :key #'car))
+  type-error)
diff --git a/ansi-tests/cons-test-23.lsp b/ansi-tests/cons-test-23.lsp
index be6e92eaf1e7ed97b2852c749aa9a9e54cd0f3cd..039dbcd075b8566da27502304f3ea27522945cbe 100644
--- a/ansi-tests/cons-test-23.lsp
+++ b/ansi-tests/cons-test-23.lsp
@@ -331,6 +331,23 @@
   (classify-error (set-exclusive-or nil nil :bad t :allow-other-keys nil))
   program-error)
 
+(deftest set-exclusive-or.error.7
+  (classify-error (set-exclusive-or (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest set-exclusive-or.error.8
+  (classify-error (set-exclusive-or (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest set-exclusive-or.error.9
+  (classify-error (set-exclusive-or (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest set-exclusive-or.error.10
+  (classify-error (set-exclusive-or (list 1 2) (list 3 4) :key #'car))
+  type-error)
+
+
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; nset-exclusive-or
@@ -657,3 +674,20 @@
 (deftest nset-exclusive-or.error.6
   (classify-error (nset-exclusive-or nil nil :bad t :allow-other-keys nil))
   program-error)
+
+(deftest nset-exclusive-or.error.7
+  (classify-error (nset-exclusive-or (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest nset-exclusive-or.error.8
+  (classify-error (nset-exclusive-or (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest nset-exclusive-or.error.9
+  (classify-error (nset-exclusive-or (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest nset-exclusive-or.error.10
+  (classify-error (nset-exclusive-or (list 1 2) (list 3 4) :key #'car))
+  type-error)
+
diff --git a/ansi-tests/cons-test-24.lsp b/ansi-tests/cons-test-24.lsp
index 806aaff435e11b2552e6e14f0b742deb769045c1..0cde94923486bf21c17ab455d591d23635dba73a 100644
--- a/ansi-tests/cons-test-24.lsp
+++ b/ansi-tests/cons-test-24.lsp
@@ -232,3 +232,19 @@
 (deftest subsetp.error.6
   (classify-error (subsetp nil nil :bad t :allow-other-keys nil))
   program-error)
+
+(deftest subsetp.error.7
+  (classify-error (subsetp (list 1 2) (list 3 4) :test #'identity))
+  program-error)
+
+(deftest subsetp.error.8
+  (classify-error (subsetp (list 1 2) (list 3 4) :test-not #'identity))
+  program-error)
+
+(deftest subsetp.error.9
+  (classify-error (subsetp (list 1 2) (list 3 4) :key #'cons))
+  program-error)
+
+(deftest subsetp.error.10
+  (classify-error (subsetp (list 1 2) (list 3 4) :key #'car))
+  type-error)
\ No newline at end of file
diff --git a/ansi-tests/count-if-not.lsp b/ansi-tests/count-if-not.lsp
index 2e5603c2dd9e7820067e6b681a756b02b5f44ea0..bdcf63d8ca618b92cbb6f1b49adf0027ced24b70 100644
--- a/ansi-tests/count-if-not.lsp
+++ b/ansi-tests/count-if-not.lsp
@@ -522,3 +522,19 @@
 (deftest count-if-not.error.11
   (classify-error (locally (count-if-not #'identity 1) t))
   type-error)
+
+(deftest count-if-not.error.12
+  (classify-error (count-if-not #'cons '(a b c)))
+  program-error)
+
+(deftest count-if-not.error.13
+  (classify-error (count-if-not #'car '(a b c)))
+  type-error)
+
+(deftest count-if-not.error.14
+  (classify-error (count-if-not #'identity '(a b c) :key #'cdr))
+  type-error)
+
+(deftest count-if-not.error.15
+  (classify-error (count-if-not #'identity '(a b c) :key #'cons))
+  program-error)
diff --git a/ansi-tests/count-if.lsp b/ansi-tests/count-if.lsp
index cbc32e87b5bc947c17d97632ffa9cb785f5f1a1f..3226584e6209fd1b33f43a814f62ee53319d895a 100644
--- a/ansi-tests/count-if.lsp
+++ b/ansi-tests/count-if.lsp
@@ -521,3 +521,21 @@
 (deftest count-if.error.11
   (classify-error (locally (count-if #'identity 1) t))
   type-error)
+
+(deftest count-if.error.12
+  (classify-error (count-if #'cons '(a b c)))
+  program-error)
+
+(deftest count-if.error.13
+  (classify-error (count-if #'car '(a b c)))
+  type-error)
+
+(deftest count-if.error.14
+  (classify-error (count-if #'identity '(a b c) :key #'cdr))
+  type-error)
+
+(deftest count-if.error.15
+  (classify-error (count-if #'identity '(a b c) :key #'cons))
+  program-error)
+
+
diff --git a/ansi-tests/count.lsp b/ansi-tests/count.lsp
index e75daf4c592e41f427591f4be84e9e5498d6618f..ede89ed492348acb1b7e2918c091a90ae34c94be 100644
--- a/ansi-tests/count.lsp
+++ b/ansi-tests/count.lsp
@@ -592,3 +592,18 @@
   (classify-error (locally (count 'a 1) t))
   type-error)
 
+(deftest count.error.12
+  (classify-error (count 'b '(a b c) :test #'identity))
+  program-error)
+
+(deftest count.error.13
+  (classify-error (count 'b '(a b c) :key #'car))
+  type-error)
+
+(deftest count.error.14
+  (classify-error (count 'b '(a b c) :test-not #'identity))
+  program-error)
+
+(deftest count.error.15
+  (classify-error (count 'b '(a b c) :key #'cons))
+  program-error)
diff --git a/ansi-tests/every.lsp b/ansi-tests/every.lsp
index a09c8047b790ca5c43e2d8288772b7f1a583a07c..412fb158c7c46aacf0dcd72b987dabffec6fa6e8 100644
--- a/ansi-tests/every.lsp
+++ b/ansi-tests/every.lsp
@@ -136,3 +136,15 @@
 (deftest every.error.10
   (classify-error (locally (every 1 '(a b c)) t))
   type-error)
+
+(deftest every.error.11
+  (classify-error (every #'cons '(a b c)))
+  program-error)
+
+(deftest every.error.12
+  (classify-error (every #'cons '(a b c) '(1 2 3) '(4 5 6)))
+  program-error)
+
+(deftest every.error.13
+  (classify-error (every #'car '(a b c)))
+  type-error)
diff --git a/ansi-tests/find-if-not.lsp b/ansi-tests/find-if-not.lsp
index 9e026325306f29028e89e547114b615e6e960424..7d5e7b29652492802c78b3660d1559d7b9219637 100644
--- a/ansi-tests/find-if-not.lsp
+++ b/ansi-tests/find-if-not.lsp
@@ -557,6 +557,22 @@
   (classify-error (locally (find-if-not #'null 'b) t))
   type-error)
 
+(deftest find-if-not.error.12
+  (classify-error (find-if-not #'cons '(a b c)))
+  program-error)
+
+(deftest find-if-not.error.13
+  (classify-error (find-if-not #'car '(a b c)))
+  type-error)
+
+(deftest find-if-not.error.14
+  (classify-error (find-if-not #'identity '(a b c) :key #'cons))
+  program-error)
+
+(deftest find-if-not.error.15
+  (classify-error (find-if-not #'identity '(a b c) :key #'car))
+  type-error)
+
 ;;; Order of evaluation tests
 
 (deftest find-if-not.order.1
diff --git a/ansi-tests/find-if.lsp b/ansi-tests/find-if.lsp
index edc1daf301e658bb208ec66b4226dae9e9d72b4c..71e2a0dcd825d3a9049a61936b8ec5edc8034346 100644
--- a/ansi-tests/find-if.lsp
+++ b/ansi-tests/find-if.lsp
@@ -580,6 +580,22 @@
   (classify-error (locally (find-if #'null 'b) t))
   type-error)
 
+(deftest find-if.error.12
+  (classify-error (find-if #'cons '(a b c)))
+  program-error)
+
+(deftest find-if.error.13
+  (classify-error (find-if #'car '(a b c)))
+  type-error)
+
+(deftest find-if.error.14
+  (classify-error (find-if #'identity '(a b c) :key #'cons))
+  program-error)
+
+(deftest find-if.error.15
+  (classify-error (find-if #'identity '(a b c) :key #'car))
+  type-error)
+
 ;;; Order of evaluation tests
 
 (deftest find-if.order.1
diff --git a/ansi-tests/find.lsp b/ansi-tests/find.lsp
index 7ed781289c47dc2227d955cacb24678e49863960..c9de8b080d701283564c106d9028120434226eec 100644
--- a/ansi-tests/find.lsp
+++ b/ansi-tests/find.lsp
@@ -816,6 +816,23 @@
   (classify-error (locally (find 'a 'b) t))
   type-error)
 
+(deftest find.error.12
+  (classify-error (find 'b '(a b c) :test #'identity))
+  program-error)
+
+(deftest find.error.13
+  (classify-error (find 'b '(a b c) :test-not #'identity))
+  program-error)
+
+(deftest find.error.14
+  (classify-error (find 'c '(a b c) :key #'cons))
+  program-error)
+
+(deftest find.error.15
+  (classify-error (find 'c '(a b c) :key #'car))
+  type-error)
+
+
 ;;; Order of evaluation tests
 
 (deftest find.order.1
diff --git a/ansi-tests/funcall.lsp b/ansi-tests/funcall.lsp
index 82be64961a05e19db484b6d79009887ef788c872..f39e4fda1c8da0563a7e880640d073e77310d18f 100644
--- a/ansi-tests/funcall.lsp
+++ b/ansi-tests/funcall.lsp
@@ -90,3 +90,16 @@
   (classify-error (funcall))
   program-error)
 
+(deftest funcall.error.5
+  (classify-error (funcall #'cons))
+  program-error)
+
+(deftest funcall.error.6
+  (classify-error (funcall #'cons 1))
+  program-error)
+
+(deftest funcall.error.7
+  (classify-error (funcall #'car 'a))
+  type-error)
+
+
diff --git a/ansi-tests/map-into.lsp b/ansi-tests/map-into.lsp
index 8488356a69e2e46b150bdf5622c716101abe3fa5..53e034b8be3612b395add02bccce92777d3700d9 100644
--- a/ansi-tests/map-into.lsp
+++ b/ansi-tests/map-into.lsp
@@ -371,6 +371,14 @@
   (classify-error (locally (map-into 'a #'(lambda () nil)) t))
   type-error)
 
+(deftest map-into.error.7
+  (classify-error (map-into (list 'a 'b 'c) #'cons '(a b c)))
+  program-error)
+
+(deftest map-into.error.8
+  (classify-error (map-into (list 'a 'b 'c) #'car '(a b c)))
+  type-error)
+
 ;;; Order of evaluation tests
 
 (deftest map-into.order.1
diff --git a/ansi-tests/map.lsp b/ansi-tests/map.lsp
index e87ac49d26a0f4f4b5e2541ba4394ca9743ab5b4..11316ccc9185f763ed07738e57e220b6ddfd24ec 100644
--- a/ansi-tests/map.lsp
+++ b/ansi-tests/map.lsp
@@ -189,6 +189,18 @@
   (classify-error (map 'list #'null))
   program-error)
 
+(deftest map.error.7
+  (classify-error (map 'list #'cons '(a b c d)))
+  program-error)
+
+(deftest map.error.8
+  (classify-error (map 'list #'cons '(a b c d) '(1 2 3 4) '(5 6 7 8)))
+  program-error)
+
+(deftest map.error.9
+  (classify-error (map 'list #'car '(a b c d)))
+  type-error)
+
 
 ;;; Test mapping on arrays with fill pointers
 
diff --git a/ansi-tests/merge.lsp b/ansi-tests/merge.lsp
index d7d28bb6248a3b61d58dc41bd42bb50098f196c9..688c8d8f81777b00960189a70fb7bd089a5ae81f 100644
--- a/ansi-tests/merge.lsp
+++ b/ansi-tests/merge.lsp
@@ -563,4 +563,10 @@
 			   t))
   type-error)
 
+(deftest merge.error.16
+  (classify-error (merge 'list (list 1 2) (list 3 4) #'car))
+  program-error)
 
+(deftest merge.error.17
+  (classify-error (merge 'list (list 'a 'b) (list 3 4) #'max))
+  type-error)
diff --git a/ansi-tests/mismatch.lsp b/ansi-tests/mismatch.lsp
index 589a9190c07ce177c3461206d8efacc37608512f..2f9b4c34f8f205ce3786f160175bc0df6b58e27d 100644
--- a/ansi-tests/mismatch.lsp
+++ b/ansi-tests/mismatch.lsp
@@ -697,3 +697,19 @@
 (deftest mismatch.error.6
   (classify-error (mismatch nil nil 1 2))
   program-error)
+
+(deftest mismatch.error.7
+  (classify-error (mismatch '(a b) '(a b) :test #'identity))
+  program-error)
+
+(deftest mismatch.error.8
+  (classify-error (mismatch '(a b) '(a b) :test-not #'identity))
+  program-error)
+
+(deftest mismatch.error.9
+  (classify-error (mismatch '(a b) '(a b) :key #'car))
+  type-error)
+
+(deftest mismatch.error.10
+  (classify-error (mismatch '(a b) '(a b) :key #'cons))
+  program-error)
diff --git a/ansi-tests/notany.lsp b/ansi-tests/notany.lsp
index 4a578f6c167b13e79cb87644b729a65059e62c81..66491af65ad73d9c39a15b6d322caed6a5d7de70 100644
--- a/ansi-tests/notany.lsp
+++ b/ansi-tests/notany.lsp
@@ -128,3 +128,15 @@
 (deftest notany.error.10
   (classify-error (locally (notany 1 '(a b c)) t))
   type-error)
+
+(deftest notany.error.11
+  (classify-error (notany #'cons '(a b c)))
+  program-error)
+
+(deftest notany.error.12
+  (classify-error (notany #'cons '(a b c) '(1 2 4) '(g h j)))
+  program-error)
+
+(deftest notany.error.13
+  (classify-error (notany #'car '(a b c)))
+  type-error)
\ No newline at end of file
diff --git a/ansi-tests/notevery.lsp b/ansi-tests/notevery.lsp
index 1b17d58dd0fb0f610e11265d2cd95d18e2c93d1b..35ddba15327778a4b4cd6ff7f38db72406a1f580 100644
--- a/ansi-tests/notevery.lsp
+++ b/ansi-tests/notevery.lsp
@@ -124,3 +124,19 @@
 (deftest notevery.error.9
   (classify-error (notevery #'null))
   program-error)
+
+(deftest notevery.error.10
+  (classify-error (locally (notevery 1 '(a b c)) t))
+  type-error)
+
+(deftest notevery.error.11
+  (classify-error (notevery #'cons '(a b c)))
+  program-error)
+
+(deftest notevery.error.12
+  (classify-error (notevery #'cons '(a b c) '(1 2 4) '(g h j)))
+  program-error)
+
+(deftest notevery.error.13
+  (classify-error (notevery #'car '(a b c)))
+  type-error)
\ No newline at end of file
diff --git a/ansi-tests/nsubstitute-if-not.lsp b/ansi-tests/nsubstitute-if-not.lsp
index 59ae27a73372214ebda3758f690e114bf34d69a0..78528a3cc85d43ae593f2e30503d895cfd7b695c 100644
--- a/ansi-tests/nsubstitute-if-not.lsp
+++ b/ansi-tests/nsubstitute-if-not.lsp
@@ -741,3 +741,21 @@
   (classify-error (nsubstitute-if-not 'a #'null nil 1 2))
   program-error)
 
+(deftest nsubstitute-if-not.error.8
+  (classify-error (nsubstitute-if-not 'a #'cons (list 'a 'b 'c)))
+  program-error)
+
+(deftest nsubstitute-if-not.error.9
+  (classify-error (nsubstitute-if-not 'a #'car (list 'a 'b 'c)))
+  type-error)
+
+(deftest nsubstitute-if-not.error.10
+  (classify-error (nsubstitute-if-not 'a #'identity (list 'a 'b 'c)
+				  :key #'car))
+  type-error)
+
+(deftest nsubstitute-if-not.error.11
+  (classify-error (nsubstitute-if-not 'a #'identity (list 'a 'b 'c)
+				  :key #'cons))
+  program-error)
+
diff --git a/ansi-tests/nsubstitute-if.lsp b/ansi-tests/nsubstitute-if.lsp
index ec034ad450a477281afad5a6c41cd3c10a5c75ed..91f7ade679b23fd8fa46113559b6a0b44b26d3cb 100644
--- a/ansi-tests/nsubstitute-if.lsp
+++ b/ansi-tests/nsubstitute-if.lsp
@@ -732,3 +732,22 @@
 (deftest nsubstitute-if.error.7
   (classify-error (nsubstitute-if 'a #'null nil 1 2))
   program-error)
+
+(deftest nsubstitute-if.error.8
+  (classify-error (nsubstitute-if 'a #'cons (list 'a 'b 'c)))
+  program-error)
+
+(deftest nsubstitute-if.error.9
+  (classify-error (nsubstitute-if 'a #'car (list 'a 'b 'c)))
+  type-error)
+
+(deftest nsubstitute-if.error.10
+  (classify-error (nsubstitute-if 'a #'identity (list 'a 'b 'c)
+				  :key #'car))
+  type-error)
+
+(deftest nsubstitute-if.error.11
+  (classify-error (nsubstitute-if 'a #'identity (list 'a 'b 'c)
+				  :key #'cons))
+  program-error)
+
diff --git a/ansi-tests/nsubstitute.lsp b/ansi-tests/nsubstitute.lsp
index fab052abf00860042f3b94f917c616b4e8d3502b..ea6a6b0d993ced3841e5b1d57e4567e4503062b4 100644
--- a/ansi-tests/nsubstitute.lsp
+++ b/ansi-tests/nsubstitute.lsp
@@ -938,3 +938,20 @@
 (deftest nsubstitute.error.7
   (classify-error (nsubstitute 'a 'b nil 1 2))
   program-error)
+
+(deftest nsubstitute.error.8
+  (classify-error (nsubstitute 'a 'b (list 'a 'b 'c) :test #'identity))
+  program-error)
+
+(deftest nsubstitute.error.9
+  (classify-error (nsubstitute 'a 'b (list 'a 'b 'c) :test-not #'identity))
+  program-error)
+
+(deftest nsubstitute.error.10
+  (classify-error (nsubstitute 'a 'b (list 'a 'b 'c) :key #'cons))
+  program-error)
+
+(deftest nsubstitute.error.11
+  (classify-error (nsubstitute 'a 'b (list 'a 'b 'c) :key #'car))
+  type-error)
+
diff --git a/ansi-tests/position-if-not.lsp b/ansi-tests/position-if-not.lsp
index e44ab6a6f0dbe28aa16a59ba721ce0a71a759c80..00b1d7de74c3599a9dcd58d9579535f80284508e 100644
--- a/ansi-tests/position-if-not.lsp
+++ b/ansi-tests/position-if-not.lsp
@@ -557,3 +557,19 @@
 (deftest position-if-not.error.11
   (classify-error (locally (position-if-not #'identity 'b) t))
   type-error)
+
+(deftest position-if-not.error.12
+  (classify-error (position-if-not #'cons '(a b c d)))
+  program-error)
+
+(deftest position-if-not.error.13
+  (classify-error (position-if-not #'car '(a b c d)))
+  type-error)
+
+(deftest position-if-not.error.14
+  (classify-error (position-if-not #'identity '(a b c d) :key #'cdr))
+  type-error)
+
+(deftest position-if-not.error.15
+  (classify-error (position-if-not #'identity '(a b c d) :key #'cons))
+  program-error)
diff --git a/ansi-tests/position-if.lsp b/ansi-tests/position-if.lsp
index 4d590f616803050db543673b03dd25e33d49dc7f..cad0748d4e66dad631f3dc46d2aacf346f3accd3 100644
--- a/ansi-tests/position-if.lsp
+++ b/ansi-tests/position-if.lsp
@@ -207,7 +207,7 @@
    (7 7)
    (nil)))
 
-(deftest position-if-vector.11
+(deftest position-if-vector.13
   (let ((a (make-array '(10) :initial-contents '(1 3 1 4 3 1 2 1 8 9)
 		       :fill-pointer 5)))
     (flet ((%f (x) (eql x 1)))
@@ -554,3 +554,21 @@
 (deftest position-if.error.11
   (classify-error (locally (position-if #'identity 'b) t))
   type-error)
+
+(deftest position-if.error.12
+  (classify-error (position-if #'cons '(a b c d)))
+  program-error)
+
+(deftest position-if.error.13
+  (classify-error (position-if #'car '(a b c d)))
+  type-error)
+
+(deftest position-if.error.14
+  (classify-error (position-if #'identity '(a b c d) :key #'cdr))
+  type-error)
+
+(deftest position-if.error.15
+  (classify-error (position-if #'identity '(a b c d) :key #'cons))
+  program-error)
+
+
diff --git a/ansi-tests/position.lsp b/ansi-tests/position.lsp
index f206c2f3edb655199f86bd7c0e71306ac3e66bd7..e070b9097a4eb324208bdd28f2b106282c7628b7 100644
--- a/ansi-tests/position.lsp
+++ b/ansi-tests/position.lsp
@@ -754,3 +754,20 @@
 (deftest position.error.11
   (classify-error (locally (position 'a 'b) t))
   type-error)
+
+(deftest position.error.12
+  (classify-error (position 'b '(a b c d) :test #'identity))
+  program-error)
+
+(deftest position.error.13
+  (classify-error (position 'b '(a b c d) :test-not #'not))
+  program-error)
+
+(deftest position.error.14
+  (classify-error (position 'b '(a b c d) :key #'cdr))
+  type-error)
+
+(deftest position.error.15
+  (classify-error (position 'b '(a b c d) :key #'cons))
+  program-error)
+
diff --git a/ansi-tests/reduce.lsp b/ansi-tests/reduce.lsp
index d0a2a0b8e46fbff692b062be1f9d22122b5695a6..cb74c38e00faa011bf04aada813da0ea3c5e65fa 100644
--- a/ansi-tests/reduce.lsp
+++ b/ansi-tests/reduce.lsp
@@ -196,6 +196,19 @@
   (classify-error (locally (reduce 'cons 'a) t))
   type-error)
 
+(deftest reduce.error.8
+  (classify-error (reduce #'identity '(a b c)))
+  program-error)
+
+(deftest reduce.error.9
+  (classify-error (reduce #'cons '(a b c) :key #'cons))
+  program-error)
+
+(deftest reduce.error.10
+  (classify-error (reduce #'cons '(a b c) :key #'car))
+  type-error)
+
+
 ;;;;;;;;
 
 (deftest reduce-string.1
diff --git a/ansi-tests/remove-duplicates.lsp b/ansi-tests/remove-duplicates.lsp
index e75653e686077b28676389c7ec8c46f10ce15d1a..ac5956b9c8268e640096111698c659d436cc7f61 100644
--- a/ansi-tests/remove-duplicates.lsp
+++ b/ansi-tests/remove-duplicates.lsp
@@ -198,6 +198,24 @@
   (classify-error (remove-duplicates nil 1 2))
   program-error)
 
+(deftest remove-duplicates.error.6
+  (classify-error (remove-duplicates (list 'a 'b 'c) :test #'identity))
+  program-error)
+
+(deftest remove-duplicates.error.7
+  (classify-error (remove-duplicates (list 'a 'b 'c) :test-not #'identity))
+  program-error)
+
+(deftest remove-duplicates.error.8
+  (classify-error (remove-duplicates (list 'a 'b 'c) :key #'cons))
+  program-error)
+
+(deftest remove-duplicates.error.9
+  (classify-error (remove-duplicates (list 'a 'b 'c) :key #'car))
+  type-error)
+
+;;;
+
 (deftest delete-duplicates.error.1
   (classify-error (delete-duplicates))
   program-error)
@@ -218,8 +236,18 @@
   (classify-error (delete-duplicates nil 1 2))
   program-error)
 
+(deftest delete-duplicates.error.6
+  (classify-error (delete-duplicates (list 'a 'b 'c) :test #'identity))
+  program-error)
 
+(deftest delete-duplicates.error.7
+  (classify-error (delete-duplicates (list 'a 'b 'c) :test-not #'identity))
+  program-error)
 
+(deftest delete-duplicates.error.8
+  (classify-error (delete-duplicates (list 'a 'b 'c) :key #'cons))
+  program-error)
 
-
-
+(deftest delete-duplicates.error.9
+  (classify-error (delete-duplicates (list 'a 'b 'c) :key #'car))
+  type-error)
\ No newline at end of file
diff --git a/ansi-tests/remove.lsp b/ansi-tests/remove.lsp
index 38fbdd445caeb77d60911f118f20cb6fdce3df44..ecb012797d90613124bca8fb5bd60540afb14cba 100644
--- a/ansi-tests/remove.lsp
+++ b/ansi-tests/remove.lsp
@@ -746,6 +746,25 @@
   (classify-error (remove 'a nil 1 2))
   program-error)
 
+(deftest remove.error.7
+  (classify-error (remove 'a (list 'a 'b 'c) :test #'identity))
+  program-error)
+
+(deftest remove.error.8
+  (classify-error (remove 'a (list 'a 'b 'c) :test-not #'identity))
+  program-error)
+
+(deftest remove.error.9
+  (classify-error (remove 'a (list 'a 'b 'c) :key #'cons))
+  program-error)
+
+(deftest remove.error.10
+  (classify-error (remove 'a (list 'a 'b 'c) :key #'car))
+  type-error)
+
+
+;;;
+
 (deftest delete.error.1
   (classify-error (delete))
   program-error)
@@ -770,3 +789,18 @@
   (classify-error (delete 'a nil 1 2))
   program-error)
 
+(deftest delete.error.7
+  (classify-error (delete 'a (list 'a 'b 'c) :test #'identity))
+  program-error)
+
+(deftest delete.error.8
+  (classify-error (delete 'a (list 'a 'b 'c) :test-not #'identity))
+  program-error)
+
+(deftest delete.error.9
+  (classify-error (delete 'a (list 'a 'b 'c) :key #'cons))
+  program-error)
+
+(deftest delete.error.10
+  (classify-error (delete 'a (list 'a 'b 'c) :key #'car))
+  type-error)
diff --git a/ansi-tests/search-list.lsp b/ansi-tests/search-list.lsp
index 9f810642ed84c2317082dec1d6d88278f91eaa49..5dba4fcdb417f46bb04d49c2b8f7256524d505d3 100644
--- a/ansi-tests/search-list.lsp
+++ b/ansi-tests/search-list.lsp
@@ -198,6 +198,22 @@
   (classify-error (search "a" "a" 1 2))
   program-error)
 
+(deftest search.error.7
+  (classify-error (search "c" "abcde" :test #'identity))
+  program-error)
+
+(deftest search.error.8
+  (classify-error (search "c" "abcde" :test-not #'identity))
+  program-error)
+
+(deftest search.error.9
+  (classify-error (search "c" "abcde" :key #'cons))
+  program-error)
+
+(deftest search.error.10
+  (classify-error (search "c" "abcde" :key #'car))
+  type-error)
+
 ;;; Order of evaluation
 
 (deftest search.order.1
diff --git a/ansi-tests/some.lsp b/ansi-tests/some.lsp
index d1a7517a9bca82b0ccb220171c6d77c35c4e4e8a..593237572403c4b081bf68672075a23fa13183e5 100644
--- a/ansi-tests/some.lsp
+++ b/ansi-tests/some.lsp
@@ -135,3 +135,17 @@
 (deftest some.error.10
   (classify-error (locally (some 1 '(a b c)) t))
   type-error)
+
+(deftest some.error.11
+  (classify-error (some #'cons '(a b c)))
+  program-error)
+
+(deftest some.error.12
+  (classify-error (some #'car '(a b c)))
+  type-error)
+
+(deftest some.error.13
+  (classify-error (some #'cons '(a b c) '(b c d) '(c d e)))
+  program-error)
+
+
diff --git a/ansi-tests/sort.lsp b/ansi-tests/sort.lsp
index f4d7fb109380dc0cea7d76280288a328cba9d349..1eabcac7b9cb59094a6c76beb50473a5901919a0 100644
--- a/ansi-tests/sort.lsp
+++ b/ansi-tests/sort.lsp
@@ -125,3 +125,19 @@
 (deftest sort.error.6
   (classify-error (sort nil #'< 1 2))
   program-error)
+
+(deftest sort.error.7
+  (classify-error (sort (list 1 2 3 4) #'identity))
+  program-error)
+
+(deftest sort.error.8
+  (classify-error (sort (list 1 2 3 4) #'< :key #'cons))
+  program-error)
+
+(deftest sort.error.9
+  (classify-error (sort (list 1 2 3 4) #'< :key #'car))
+  type-error)
+
+(deftest sort.error.10
+  (classify-error (sort (list 1 2 3 4) #'elt))
+  type-error)
diff --git a/ansi-tests/stable-sort.lsp b/ansi-tests/stable-sort.lsp
index cbf79d847a8a02b3a11e8a654218e4b2e0a7bf48..9925d9cbfdb5462fe7e785dc84f16826d094f8ef 100644
--- a/ansi-tests/stable-sort.lsp
+++ b/ansi-tests/stable-sort.lsp
@@ -135,4 +135,20 @@
 
 (deftest stable-sort.error.6
   (classify-error (stable-sort nil #'< 1 2))
-  program-error)
\ No newline at end of file
+  program-error)
+
+(deftest stable-sort.error.7
+  (classify-error (stable-sort (list 1 2 3 4) #'identity))
+  program-error)
+
+(deftest stable-sort.error.8
+  (classify-error (stable-sort (list 1 2 3 4) #'< :key #'cons))
+  program-error)
+
+(deftest stable-sort.error.9
+  (classify-error (stable-sort (list 1 2 3 4) #'< :key #'car))
+  type-error)
+
+(deftest stable-sort.error.10
+  (classify-error (stable-sort (list 1 2 3 4) #'elt))
+  type-error)
diff --git a/ansi-tests/substitute-if-not.lsp b/ansi-tests/substitute-if-not.lsp
index 26b5b5787ea66c7a5a9dea77b85f23ec0780f068..ad57f65fc6e9f9d49b3372e5fa896a9c25e011d8 100644
--- a/ansi-tests/substitute-if-not.lsp
+++ b/ansi-tests/substitute-if-not.lsp
@@ -816,3 +816,22 @@
 (deftest substitute-if-not.error.7
   (classify-error (substitute-if-not 'a #'null nil 1 2))
   program-error)
+
+(deftest substitute-if-not.error.8
+  (classify-error (substitute-if-not 'a #'cons (list 'a 'b 'c)))
+  program-error)
+
+(deftest substitute-if-not.error.9
+  (classify-error (substitute-if-not 'a #'car (list 'a 'b 'c)))
+  type-error)
+
+(deftest substitute-if-not.error.10
+  (classify-error (substitute-if-not 'a #'identity (list 'a 'b 'c)
+				  :key #'car))
+  type-error)
+
+(deftest substitute-if-not.error.11
+  (classify-error (substitute-if-not 'a #'identity (list 'a 'b 'c)
+				  :key #'cons))
+  program-error)
+
diff --git a/ansi-tests/substitute-if.lsp b/ansi-tests/substitute-if.lsp
index 7dfac780938c1ce9798f541b44b811b3d0cc632e..2643cc29825c1138b57b0c70359ac209cc529e7c 100644
--- a/ansi-tests/substitute-if.lsp
+++ b/ansi-tests/substitute-if.lsp
@@ -836,3 +836,21 @@
 (deftest substitute-if.error.7
   (classify-error (substitute-if 'a #'null nil 1 2))
   program-error)
+
+(deftest substitute-if.error.8
+  (classify-error (substitute-if 'a #'cons (list 'a 'b 'c)))
+  program-error)
+
+(deftest substitute-if.error.9
+  (classify-error (substitute-if 'a #'car (list 'a 'b 'c)))
+  type-error)
+
+(deftest substitute-if.error.10
+  (classify-error (substitute-if 'a #'identity (list 'a 'b 'c)
+				  :key #'car))
+  type-error)
+
+(deftest substitute-if.error.11
+  (classify-error (substitute-if 'a #'identity (list 'a 'b 'c)
+				  :key #'cons))
+  program-error)
diff --git a/ansi-tests/substitute.lsp b/ansi-tests/substitute.lsp
index 3ec0ed2c69722f8c64c4bb9f96d3259daf401cb9..bd17f8e5aa1f77b2859d265312be5b9788f6748f 100644
--- a/ansi-tests/substitute.lsp
+++ b/ansi-tests/substitute.lsp
@@ -1067,3 +1067,20 @@
 (deftest substitute.error.7
   (classify-error (substitute 'a 'b nil 1 2))
   program-error)
+
+(deftest substitute.error.8
+  (classify-error (substitute 'a 'b (list 'a 'b 'c) :test #'identity))
+  program-error)
+
+(deftest substitute.error.9
+  (classify-error (substitute 'a 'b (list 'a 'b 'c) :test-not #'identity))
+  program-error)
+
+(deftest substitute.error.10
+  (classify-error (substitute 'a 'b (list 'a 'b 'c) :key #'cons))
+  program-error)
+
+(deftest substitute.error.11
+  (classify-error (substitute 'a 'b (list 'a 'b 'c) :key #'car))
+  type-error)
+