X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/3dca7758421664a838c54b273bd9221f02072045..f458e64e36509fa8c204f1dbcafff1d3dc059619:/src/package.lisp diff --git a/src/package.lisp b/src/package.lisp index d6e47f4..9f0179a 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -7,7 +7,7 @@ ;;;----- Licensing notice --------------------------------------------------- ;;; -;;; This file is part of the Sensble Object Design, an object system for C. +;;; This file is part of the Sensible Object Design, an object system for C. ;;; ;;; SOD is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by @@ -28,10 +28,12 @@ #:sod-utilities #:sod-parser)) -(cl:in-package #:sod) +(cl:defpackage #:sod-user + (:use #:common-lisp + #:sod-utilities + #:sod-parser + #:sod)) -(export '*sod-version*) -(defparameter *sod-version* sod-sysdef:*version* - "The version of the SOD translator system, as a string.") +(cl:in-package #:sod) ;;;----- That's all, folks --------------------------------------------------