X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/5f32b8fda0421d16fc3455d1ce9aef746afbd818..fddbedf7b1b4b19add30eeb62281748cc77e6955:/src/package.lisp diff --git a/src/package.lisp b/src/package.lisp index 9f0179a..61285db 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -23,16 +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-utilities - #:sod-parser - #: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)