X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdeftypes-for-target.lisp;h=aa62b9916386c34bdffffeb67b684f91ce358a5f;hb=HEAD;hp=103047cb763a3ccee4490d63ab6fb6cbefa68599;hpb=a682f4c392bc874a6a898632889319ebdd8821fc;p=sbcl.git diff --git a/src/code/deftypes-for-target.lisp b/src/code/deftypes-for-target.lisp index 103047c..aa62b99 100644 --- a/src/code/deftypes-for-target.lisp +++ b/src/code/deftypes-for-target.lisp @@ -155,7 +155,7 @@ ;;; a consed sequence result. If a vector, is a simple array. (sb!xc:deftype consed-sequence () - '(or (simple-array * (*)) (and sequence (not vector)))) + '(or (simple-array * (*)) list extended-sequence)) ;;; the :END arg to a sequence (sb!xc:deftype sequence-end () '(or null index)) @@ -167,6 +167,11 @@ ;;; a valid argument to a stream function (sb!xc:deftype stream-designator () '(or stream (member nil t))) +;;; something valid as the :EXTERNAL-FORMAT argument to OPEN, LOAD, +;;; COMPILE-FILE and friends. +(sb!xc:deftype external-format-designator () + '(or keyword (cons keyword))) + ;;; an object suitable for input to standard functions that accept ;;; "environment objects" (of the ANSI glossary) (sb!xc:deftype lexenv-designator () '(or lexenv null))