final.lisp: Move definition of *sod-version* here.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000 (10:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 17 Sep 2015 10:19:48 +0000 (11:19 +0100)
Seems more at home somehow.

src/final.lisp
src/package.lisp

index 5df72f1..fe07cc8 100644 (file)
 (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*)
index d6e47f4..4ae7da7 100644 (file)
@@ -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 --------------------------------------------------