Skip to content

Commit

Permalink
Making the new closer-mop work for bknr.impex
Browse files Browse the repository at this point in the history
Using closer-common-lisp for both bknr.impex and bknr.datastore now, as that is the intended way to use both cl and closer-mop
  • Loading branch information
madnificent authored and hanshuebner committed Aug 29, 2010
1 parent 6a9115b commit 9086b85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/data/package.lisp
@@ -1,12 +1,12 @@
(in-package :cl-user)

(defpackage :bknr.datastore
(:use :cl :bknr.utils :cl-interpol :cl-ppcre
(:use :closer-common-lisp
:bknr.utils :cl-interpol :cl-ppcre
:bknr.indices :bknr.statistics
:closer-mop :alexandria)
:alexandria)
#+cmu
(:shadowing-import-from :common-lisp #:subtypep #:typep)
(:shadowing-import-from :closer-mop defmethod defgeneric standard-generic-function)
(:shadowing-import-from :cl-interpol quote-meta-chars)
(:shadowing-import-from :bknr.indices array-index)
#| (:shadow :cl #:get-internal-run-time #:get-internal-real-time #:get-universal-time #:sleep) |#
Expand Down
11 changes: 5 additions & 6 deletions src/xml-impex/package.lisp
@@ -1,12 +1,11 @@
(in-package :cl-user)

(defpackage :bknr.impex
(:use :cl
:cxml
:closer-mop
:bknr.utils
:bknr.xml
:bknr.indices)
(:use :cxml
:closer-common-lisp
:bknr.utils
:bknr.xml
:bknr.indices)
#+cmu
(:shadowing-import-from :common-lisp #:subtypep #:typep)

Expand Down

0 comments on commit 9086b85

Please sign in to comment.