X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/3a774b55edfea441c1715994924c2999e9202143..6afec9101d5ea87e3df4bda2239ffd05f8154fa6:/src/package.lisp diff --git a/src/package.lisp b/src/package.lisp index 292b64f..61285db 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -23,14 +23,18 @@ ;;; along with SOD; if not, write to the Free Software Foundation, ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -(cl:defpackage #:sod - (:use #:common-lisp - #:sod-utilities - #:sod-parser)) - -(cl:defpackage #:sod-user - (:use #:common-lisp - #:sod)) +(eval-when (:compile-toplevel :load-toplevel :execute) + (handler-bind ((warning #'muffle-warning)) + (cl:defpackage #:sod + (:use #:common-lisp + #:sod-utilities + #:sod-parser)) + (cl:defpackage #:sod-user + (:use #:common-lisp + #:sod-utilities + #:optparse + #:sod-parser + #:sod)))) (cl:in-package #:sod)