Skip to content

Commit

Permalink
Merge pull request #94 from kpoeck/master
Browse files Browse the repository at this point in the history
Port to clasp (wrapper)
  • Loading branch information
rpav authored Apr 8, 2019
2 parents bfb1aeb + 0ca563e commit 1bdb99e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autowrap/wrapper.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

(declaim (inline make-wrapper wrapper-ptr))
(defstruct wrapper
#+(or cmucl ecl sbcl clisp lispworks)
#+(or cmucl clasp ecl sbcl clisp lispworks)
(ptr (cffi:null-pointer) :type cffi:foreign-pointer)
#+(or ccl allegro)
(ptr #.(cffi:null-pointer) :type cffi:foreign-pointer)
#-(or cmucl ecl sbcl clisp ccl allegro lispworks)
#-(or cmucl clasp ecl sbcl clisp ccl allegro lispworks)
(error "Unknown Lisp. Fix appropriate condition.")
(validity t))

Expand Down

0 comments on commit 1bdb99e

Please sign in to comment.