From: Mark Wooding Date: Sun, 30 Aug 2015 09:58:38 +0000 (+0100) Subject: final.lisp: Move definition of *sod-version* here. X-Git-Url: https://git.distorted.org.uk/~mdw/sod/commitdiff_plain/8f3f42a31fa72452fd0e46b0a2b166422c712188 final.lisp: Move definition of *sod-version* here. Seems more at home somehow. --- diff --git a/src/final.lisp b/src/final.lisp index 5df72f1..fe07cc8 100644 --- a/src/final.lisp +++ b/src/final.lisp @@ -26,6 +26,13 @@ (cl:in-package #:sod) ;;;-------------------------------------------------------------------------- +;;; Miscellaneous details. + +(export '*sod-version*) +(defparameter *sod-version* sod-sysdef:*version* + "The version of the SOD translator system, as a string.") + +;;;-------------------------------------------------------------------------- ;;; Debugging utilities. (export '*debugout-pathname*) diff --git a/src/package.lisp b/src/package.lisp index d6e47f4..4ae7da7 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -30,8 +30,4 @@ (cl:in-package #:sod) -(export '*sod-version*) -(defparameter *sod-version* sod-sysdef:*version* - "The version of the SOD translator system, as a string.") - ;;;----- That's all, folks --------------------------------------------------