From bf0a8c394bdf34895ad53771665f70c3b80e272e Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 23 Apr 2006 00:59:07 +0100 Subject: [PATCH] collect, unix: Rename `mdw.collect' package to just `collect'. Organization: Straylight/Edgeware From: Mark Wooding --- collect.lisp | 4 ++-- unix.lisp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collect.lisp b/collect.lisp index caa691a..813707e 100644 --- a/collect.lisp +++ b/collect.lisp @@ -23,10 +23,10 @@ ;;; along with this program; if not, write to the Free Software Foundation, ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -(defpackage #:mdw.collect +(defpackage #:collect (:use #:common-lisp #:mdw.base) (:export #:collecting #:with-collection #:collect)) -(in-package mdw.collect) +(in-package collect) (eval-when (:compile-toplevel :load-toplevel) (defvar *collecting-anon-list-name* (gensym) diff --git a/unix.lisp b/unix.lisp index 106b8f2..4465740 100644 --- a/unix.lisp +++ b/unix.lisp @@ -24,7 +24,7 @@ ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. (defpackage #:mdw.unix - (:use #:common-lisp #:mdw.base #:mdw.collect) + (:use #:common-lisp #:mdw.base #:collect) (:export #:unix-error #:errno-value #:with-errno-handlers #:syscall #:syscall* #:stat #:sys-stat -- [mdw]