Move the export to package definition

That's where it belongs.
This commit is contained in:
Tom Willemsen 2013-04-06 14:43:31 +02:00
parent 220174641a
commit 85868d6dcf
2 changed files with 2 additions and 3 deletions

View file

@ -19,8 +19,6 @@
(in-package :org.ryuslash.clark)
(export '(clark))
(defmacro sql (&body body)
(apply 'concatenate 'string
(mapcar (lambda (itm) (format nil "~A " itm)) body)))

View file

@ -18,4 +18,5 @@
;;; Code:
(defpackage :org.ryuslash.clark
(:use :clim :clim-lisp :sqlite))
(:use :clim :clim-lisp :sqlite)
(:export :clark))