Skip to content

Commit

Permalink
ctype: missed ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
Bike committed Dec 20, 2023
1 parent 1f67562 commit 30af597
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Ctype/default.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -515,9 +515,12 @@
`(cl:satisfies ,fname))

(defmethod satisfiesp (ct sys)
(declare (ignore sys))
(and (cl:consp ct) (cl:consp (cdr ct)) (cl:null (cddr ct))))

(defmethod satisfies-fname (ct sys) (second ct))
(defmethod satisfies-fname (ct sys)
(declare (ignore sys))
(second ct))

(defmethod keyword (sys) (declare (ignore sys)) 'cl:keyword)

Expand Down

0 comments on commit 30af597

Please sign in to comment.