Skip to content

Commit

Permalink
[add] type-specifier-p: support lispworks (thanks @Yehouda, fix #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Jan 30, 2025
1 parent 9abdaf3 commit 19f62f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
#+clisp (return (null
(nth-value 1 (ignore-errors
(ext:type-expand type-specifier)))))
#-(or sbcl openmcl ecl lisp)
#+lispworks (return (type:valid-type-specifier type-specifier))
#-(or sbcl openmcl ecl clisp lispworks)
(or (when (symbolp type-specifier)
(documentation type-specifier 'type))
(error "TYPE-SPECIFIER-P not available for this implementation"))))
Expand Down

0 comments on commit 19f62f9

Please sign in to comment.