Move the export to package definition
That's where it belongs.
This commit is contained in:
parent
220174641a
commit
85868d6dcf
2 changed files with 2 additions and 3 deletions
|
@ -19,8 +19,6 @@
|
||||||
|
|
||||||
(in-package :org.ryuslash.clark)
|
(in-package :org.ryuslash.clark)
|
||||||
|
|
||||||
(export '(clark))
|
|
||||||
|
|
||||||
(defmacro sql (&body body)
|
(defmacro sql (&body body)
|
||||||
(apply 'concatenate 'string
|
(apply 'concatenate 'string
|
||||||
(mapcar (lambda (itm) (format nil "~A " itm)) body)))
|
(mapcar (lambda (itm) (format nil "~A " itm)) body)))
|
||||||
|
|
|
@ -18,4 +18,5 @@
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(defpackage :org.ryuslash.clark
|
(defpackage :org.ryuslash.clark
|
||||||
(:use :clim :clim-lisp :sqlite))
|
(:use :clim :clim-lisp :sqlite)
|
||||||
|
(:export :clark))
|
||||||
|
|
Loading…
Reference in a new issue