From 9f452a9be33c87194099193ea8b823898ad75d61 Mon Sep 17 00:00:00 2001 Message-Id: <9f452a9be33c87194099193ea8b823898ad75d61.1727319467.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 22 Sep 2015 11:27:11 +0100 Subject: [PATCH] src/sod-{frontend,test}.asd.in: Export `*version*'. Organization: Straylight/Edgeware From: Mark Wooding Have the other sysdef files also export this symbol because otherwise SBCL emits annoying warnings. --- src/sod-frontend.asd.in | 3 ++- src/sod-test.asd.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/sod-frontend.asd.in b/src/sod-frontend.asd.in index b81fd2d..591438c 100644 --- a/src/sod-frontend.asd.in +++ b/src/sod-frontend.asd.in @@ -24,7 +24,8 @@ ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. (cl:defpackage #:sod-sysdef - (:use #:common-lisp #:asdf)) + (:use #:common-lisp #:asdf) + (:export #:*version*)) (cl:in-package #:sod-sysdef) diff --git a/src/sod-test.asd.in b/src/sod-test.asd.in index 6b2a83b..c9504aa 100644 --- a/src/sod-test.asd.in +++ b/src/sod-test.asd.in @@ -24,7 +24,8 @@ ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. (cl:defpackage #:sod-sysdef - (:use #:common-lisp #:asdf)) + (:use #:common-lisp #:asdf) + (:export #:*version*)) (cl:in-package #:sod-sysdef) -- [mdw]