From 9e10c26dce88a318e0f87d316a135fd27d3d6f3e Mon Sep 17 00:00:00 2001
From: Kevin Rosenberg <>
Date: Tue, 12 Aug 2003 03:56:43 +0000
Subject: [PATCH] don't export wild-module symbol

---
 debian/changelog  | 7 +++++++
 wild-modules.lisp | 5 ++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index fd5bd96c..210e2b47 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cl-asdf (1.77.2-1) unstable; urgency=low
+
+  * Don't export asdf:wild-module as can cause a full warning when
+  reloading asdf
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 11 Aug 2003 21:55:16 -0600
+
 cl-asdf (1.77.1-1) unstable; urgency=low
 
   * cclan.lisp: conditionalize for sbcl (closes: 201822)
diff --git a/wild-modules.lisp b/wild-modules.lisp
index 0635f3a1..2649d7ef 100644
--- a/wild-modules.lisp
+++ b/wild-modules.lisp
@@ -32,4 +32,7 @@ use a wild pathname instead." module)))
                              options))
                     files)))))
 
-(export '(wild-module))
+;; Don't export wild-module or else will get a full warning
+;; when (require 'asdf) if asdf is already loaded
+
+;;(export '(wild-module))
-- 
GitLab