From 7a3cdb76d13cc105b063274daf22bc58e00edf47 Mon Sep 17 00:00:00 2001
From: Matt Birkholz <matt@birkholz.chandler.az.us>
Date: Sun, 8 Sep 2013 12:30:32 -0700
Subject: [PATCH] blowfish,gdbm,md5: Expand on note about importing bindings.

---
 src/blowfish/blowfish.pkg | 4 ++--
 src/gdbm/gdbm.pkg         | 4 ++--
 src/md5/md5.pkg           | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/blowfish/blowfish.pkg b/src/blowfish/blowfish.pkg
index f256630a9..3e5a145d8 100644
--- a/src/blowfish/blowfish.pkg
+++ b/src/blowfish/blowfish.pkg
@@ -29,8 +29,8 @@ USA.
 (define-package (blowfish)
   (files "blowfish")
   (parent ())
-  ;; You'll have to import these from (gdbm), after a (global-
-  ;; definitions gdbm/) declaration(?).
+  ;; You'll have to import these from (global-definitions blowfish/).
+  ;; They are currently bound in () by exports from (runtime blowfish).
   #;(export #f
 	  blowfish-available?
 	  blowfish-cbc
diff --git a/src/gdbm/gdbm.pkg b/src/gdbm/gdbm.pkg
index 66bcd0831..92f52e243 100644
--- a/src/gdbm/gdbm.pkg
+++ b/src/gdbm/gdbm.pkg
@@ -30,8 +30,8 @@ USA.
   (files "gdbm")
   (parent ())
   (initialization (initialize-package!))
-  ;; You'll have to import these from (gdbm).  They are currently
-  ;; bound in () by exports from (runtime gdbm).
+  ;; You'll have to import these from (global-definitions gdbm/).
+  ;; They are currently bound in () by exports from (runtime gdbm).
   #;(export #f
 	  gdbm-available?
 	  gdbm-close
diff --git a/src/md5/md5.pkg b/src/md5/md5.pkg
index c11e1a6ee..6c8ea6aa2 100644
--- a/src/md5/md5.pkg
+++ b/src/md5/md5.pkg
@@ -29,8 +29,8 @@ USA.
 (define-package (md5)
   (files "md5")
   (parent ())
-  ;; You'll have to import these from (gdbm), after a (global-
-  ;; definitions gdbm/) declaration(?).
+  ;; You'll have to import these from (global-definitions md5/).  They
+  ;; are currently bound in () by exports from (runtime crypto).
   #;(export #f
 	  md5-available?
 	  md5-file
-- 
2.25.1