Skip to content

Commit 19f62f9

Browse files
committed
[add] type-specifier-p: support lispworks (thanks @Yehouda, fix #11)
1 parent 9abdaf3 commit 19f62f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
#+clisp (return (null
5555
(nth-value 1 (ignore-errors
5656
(ext:type-expand type-specifier)))))
57-
#-(or sbcl openmcl ecl lisp)
57+
#+lispworks (return (type:valid-type-specifier type-specifier))
58+
#-(or sbcl openmcl ecl clisp lispworks)
5859
(or (when (symbolp type-specifier)
5960
(documentation type-specifier 'type))
6061
(error "TYPE-SPECIFIER-P not available for this implementation"))))

0 commit comments

Comments
 (0)