Skip to content
Snippets Groups Projects
Commit 3a25da18 authored by wlott's avatar wlott
Browse files

Left out some package qualifiers.

parent a385cd59
No related branches found
No related tags found
No related merge requests found
......@@ -42,13 +42,13 @@
(in-package "KERNEL")
(defun ctype-p (thing)
(and (structurep thing)
(member (structure-ref thing 0)
(member (c::structure-ref thing 0)
'(ctype hairy-type named-type numeric-type array-type
member-type structure-type union-type args-type
values-type function-type))))
(defun values-type-p (thing)
(and (structurep thing) (eq (structure-ref thing 0) 'values-type)))
(and (structurep thing) (eq (c::structure-ref thing 0) 'values-type)))
;;; Define this so that we can copy type-class structures before the defstruct
;;; for type-class runs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment